File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,11 @@ jobs:
15
15
- name : Checkout code
16
16
uses : actions/checkout@v4
17
17
18
- - name : Pull in optional dependencies
19
- run : composer require --no-update jean-beru/fos-http-cache-cloudfront twig/twig symfony/console phpstan/phpstan-symfony
18
+ - name : Pull in optional dependencies and phpstan
19
+ run : composer require jean-beru/fos-http-cache-cloudfront twig/twig symfony/console
20
20
21
21
- name : PHPStan
22
- uses : docker://oskarstark/phpstan-ga
23
- with :
24
- args : analyze --no-progress
22
+ run : vendor/bin/phpstan analyze --no-progress
25
23
26
24
phpstan-tests :
27
25
name : PHPStan tests
@@ -33,10 +31,11 @@ jobs:
33
31
- name : Checkout code
34
32
uses : actions/checkout@v4
35
33
34
+ - name : Install phpstan
35
+ run : composer install
36
+
36
37
- name : PHPStan
37
- uses : docker://oskarstark/phpstan-ga
38
- with :
39
- args : analyze --no-progress -c phpstan.tests.neon.dist
38
+ run : vendor/bin/phpstan analyze --no-progress -c phpstan.tests.neon.dist
40
39
41
40
php-cs-fixer :
42
41
name : PHP-CS-Fixer
You can’t perform that action at this time.
0 commit comments