File tree Expand file tree Collapse file tree 4 files changed +717
-3
lines changed Expand file tree Collapse file tree 4 files changed +717
-3
lines changed Original file line number Diff line number Diff line change 39
39
coverage : " none"
40
40
extensions : intl
41
41
php-version : ${{ matrix.php-version }}
42
- tools : composer:v2
42
+ tools : composer:v2, phpstan
43
43
44
44
- name : " Set composer cache directory"
45
45
id : composer-cache
53
53
restore-keys : ${{ runner.os }}-${{ matrix.php-version }}-composer-
54
54
55
55
- name : " Composer install"
56
- id : install
57
56
run : composer install --no-interaction --no-progress
58
57
58
+ - name : Install PHPUnit
59
+ id : install
60
+ run : vendor/bin/simple-phpunit install
61
+
59
62
- name : Lint YAML files
60
63
if : always() && steps.install.outcome == 'success'
61
64
run : ./bin/console lint:yaml config --parse-tags
87
90
- name : Check if any dependencies are compromised
88
91
if : always() && steps.install.outcome == 'success'
89
92
run : /home/runner/.symfony/bin/symfony check:security
93
+
94
+ - name : Run PHPStan
95
+ if : always() && steps.install.outcome == 'success'
96
+ run : phpstan analyze
You can’t perform that action at this time.
0 commit comments