File tree Expand file tree Collapse file tree 1 file changed +17
-4
lines changed
Expand file tree Collapse file tree 1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change 66 name : Coding Standards
77 runs-on : ' ubuntu-latest'
88
9+ env :
10+ PHP_CS_FIXER_IGNORE_ENV : 1
11+
912 steps :
1013 - name : Checkout Repository
1114 uses : actions/checkout@v4
1215
16+ - name : Setup PHP
17+ uses : shivammathur/setup-php@v2
18+ with :
19+ php-version : ' 8.4'
20+
1321 - name : Install PHP Dependencies
14- run : composer update
22+ run : composer install --no-interaction --no-progress --no-scripts --prefer-dist
1523
1624 - name : Verify Coding Standards
1725 run : vendor/bin/php-cs-fixer fix --diff --dry-run
2432 - name : Checkout Repository
2533 uses : actions/checkout@v4
2634
35+ - name : Setup PHP
36+ uses : shivammathur/setup-php@v2
37+ with :
38+ php-version : ' 8.4'
39+
2740 - name : Install PHP Dependencies
28- run : composer update
41+ run : composer install --no-interaction --no-progress --no-scripts --prefer-dist
2942
3043 - name : Run Static Analysis
3144 run : vendor/bin/phpstan analyze
3649
3750 strategy :
3851 matrix :
39- php-versions : ['8.1', '8.2', '8.3']
52+ php-versions : ['8.1', '8.2', '8.3', '8.4' ]
4053
4154 steps :
4255 - name : Checkout Repository
4962 coverage : xdebug
5063
5164 - name : Install PHP Dependencies
52- run : composer update
65+ run : composer install --no-interaction --no-progress --no-scripts --prefer-dist
5366
5467 - name : Run Tests
5568 run : vendor/bin/phpunit --coverage-text
You can’t perform that action at this time.
0 commit comments