File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,20 +32,26 @@ jobs:
3232 run : " composer normalize --dry-run"
3333
3434 tests :
35- runs-on : ${{ matrix.os }}
35+ runs-on : ubuntu-latest
3636
3737 strategy :
38+ fail-fast : false
3839 matrix :
39- os : [ubuntu-latest]
40- laravel :
41- - 11.*
42- - 12.*
43- php :
44- - 8.3
45- - 8.4
46- dependency-version : [prefer-stable]
47-
48- name : PHP ${{ matrix.php }} / Laravel ${{ matrix.laravel }} (${{ matrix.os }})
40+ include :
41+ - laravel : ' 11.*'
42+ php : ' 8.2'
43+ testbench : ' ^9.0'
44+ - laravel : ' 12.*'
45+ php : ' 8.3'
46+ testbench : ' ^10.0'
47+ - laravel : ' 12.*'
48+ php : ' 8.4'
49+ testbench : ' ^10.0'
50+ - laravel : ' 12.*'
51+ php : ' 8.5'
52+ testbench : ' ^10.0'
53+
54+ name : PHP ${{ matrix.php }} / Laravel ${{ matrix.laravel }} (ubuntu-latest)
4955
5056 steps :
5157 - name : Checkout code
6066 run : composer self-update --2
6167
6268 - name : Install dependencies
63- run : composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-progress
69+ run : composer require --dev "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-progress
6470
6571 - name : Execute tests
6672 run : composer test
Original file line number Diff line number Diff line change 1818 },
1919 "require-dev" : {
2020 "ergebnis/composer-normalize" : " ^2.43" ,
21- "orchestra/testbench" : " ^9.0 || ^10" ,
22- "pestphp/pest" : " ^2 .0 || ^3 .0" ,
21+ "orchestra/testbench" : " ^9.0 || ^10.0 || ^11.0 " ,
22+ "pestphp/pest" : " ^3 .0 || ^4 .0" ,
2323 "phpstan/phpstan" : " ^1.10" ,
24- "phpunit/phpunit" : " ^10 || ^11.5 .3" ,
24+ "phpunit/phpunit" : " ^11.5.3 || ^12 .3" ,
2525 "squizlabs/php_codesniffer" : " ^3.5"
2626 },
2727 "suggest" : {
You can’t perform that action at this time.
0 commit comments