File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,18 @@ jobs:
1010 runs-on : ubuntu-latest
1111 strategy :
1212 matrix :
13- php : ['7.4', '8.0']
13+ php : ['7.4', '8.0', '8.1' ]
1414 steps :
15+ - name : Setup PHP
16+ uses : shivammathur/setup-php@v2
17+ with :
18+ php-version : ${{ matrix.php }}
1519 - uses : actions/checkout@v3
1620 - name : Install dependencies
1721 run : composer install --no-interaction --no-progress
1822 - name : Run tests
19- run : php${{ matrix.php }} vendor/bin/phpunit --configuration Tests/phpunit.xml --verbose --fail-on-warning
23+ run : php vendor/bin/phpunit --configuration Tests/phpunit.xml --verbose --fail-on-warning
2024 - name : Run phpstan
21- run : php${{ matrix.php }} vendor/bin/phpstan
25+ run : php vendor/bin/phpstan
2226 - name : Run psalm
23- run : php${{ matrix.php }} vendor/bin/psalm
27+ run : php vendor/bin/psalm
You can’t perform that action at this time.
0 commit comments