File tree Expand file tree Collapse file tree 1 file changed +6
-11
lines changed
Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change 77
88jobs :
99 phpunit :
10- name : PHPUnit tests on ${{ matrix.php }} ${{ matrix.composer-flags }}
10+ name : PHPUnit tests on ${{ matrix.php }}
1111 runs-on : ubuntu-latest
1212 strategy :
1313 matrix :
14- php : [ '8.4' ]
15- composer-flags : [ '' ]
16- phpunit-flags : [ '--coverage-text' ]
14+ php : [ '8.4', '8.5' ]
1715 steps :
1816 - uses : actions/checkout@v2
1917 - uses : shivammathur/setup-php@v2
2018 with :
2119 php-version : ${{ matrix.php }}
2220 coverage : xdebug
23- tools : composer:v2
24- - run : composer install --no-progress ${{ matrix.composer-flags }}
25- - run : vendor/bin/phpunit ${{ matrix.phpunit-flags }}
21+ - run : composer install --no-progress
22+ - run : vendor/bin/phpunit
2623 phpstan :
2724 name : PHPStan checks on ${{ matrix.php }}
2825 runs-on : ubuntu-latest
2926 strategy :
3027 matrix :
3128 php : [ '8.4' ]
32- composer-flags : [ '' ]
3329 steps :
3430 - uses : actions/checkout@v2
3531 - uses : shivammathur/setup-php@v2
3632 with :
3733 php-version : ${{ matrix.php }}
38- coverage : xdebug
39- tools : composer:v2
40- - run : composer install --no-progress ${{ matrix.composer-flags }}
34+ coverage : none
35+ - run : composer install --no-progress
4136 - run : vendor/bin/phpstan
You can’t perform that action at this time.
0 commit comments