File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,27 @@ jobs:
1717 - name : ' Setup PHP'
1818 uses : ' shivammathur/setup-php@v2'
1919 with :
20- php-version : ' 8.3 '
20+ php-version : ' 8.0 '
2121 - name : ' Composer Install'
2222 uses : ' ramsey/composer-install@v3'
2323 - name : ' Rector'
2424 run : ' vendor/bin/rector process --dry-run --no-progress-bar --ansi'
2525
26+ phpstan :
27+ name : ' PHPStan'
28+ runs-on : ' ubuntu-24.04'
29+ steps :
30+ - name : ' Checkout'
31+ uses : ' actions/checkout@v4'
32+ - name : ' Setup PHP'
33+ uses : ' shivammathur/setup-php@v2'
34+ with :
35+ php-version : ' 8.0'
36+ - name : ' Composer Install'
37+ uses : ' ramsey/composer-install@v3'
38+ - name : ' PHPStan'
39+ run : ' vendor/bin/phpstan analyze --no-progress --ansi'
40+
2641 phpunit :
2742 name : ' PHPUnit'
2843 runs-on : ' ubuntu-24.04'
You can’t perform that action at this time.
0 commit comments