File tree Expand file tree Collapse file tree 2 files changed +16
-10
lines changed Expand file tree Collapse file tree 2 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -11,12 +11,15 @@ jobs:
1111 runs-on : ubuntu-latest
1212
1313 strategy :
14- fail-fast : true
14+ fail-fast : false
1515 matrix :
1616 php : [8.1, 8.2]
17- laravel : [10]
17+ laravel : [10, '11' ]
1818 coverage-driver : [pcov]
1919 stability : [prefer-lowest, prefer-stable]
20+ exclude :
21+ - laravel : ' 11'
22+ php : 8.1
2023
2124 name : Ubuntu - P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
2225
@@ -51,12 +54,15 @@ jobs:
5154 runs-on : windows-latest
5255
5356 strategy :
54- fail-fast : true
57+ fail-fast : false
5558 matrix :
5659 php : [8.1, 8.2]
57- laravel : [10]
60+ laravel : [10, '11' ]
5861 coverage-driver : [pcov]
5962 stability : [prefer-lowest, prefer-stable]
63+ exclude :
64+ - laravel : ' 11'
65+ php : 8.1
6066
6167 name : Windows - P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
6268
7884
7985 - name : Install dependencies
8086 run : |
81- composer require "illuminate/contracts=^ ${{ matrix.laravel }}" --no-interaction --no-update
87+ composer require "illuminate/contracts=${{ matrix.laravel }}.* " --no-interaction --no-update
8288 composer update --${{ matrix.stability }} --prefer-dist --no-interaction
8389
8490 - name : Execute tests
Original file line number Diff line number Diff line change 1818 "require" : {
1919 "php" : " ^8.1|^8.2" ,
2020 "livewire/livewire" : " ^3.1" ,
21- "illuminate/contracts" : " ^10.0" ,
22- "illuminate/database" : " ^10.0" ,
23- "illuminate/support" : " ^10.0"
21+ "illuminate/contracts" : " ^10.0|^11.0 " ,
22+ "illuminate/database" : " ^10.0|^11.0 " ,
23+ "illuminate/support" : " ^10.0|^11.0 "
2424 },
2525 "require-dev" : {
26- "orchestra/testbench" : " ^7.5|^8 .0" ,
27- "phpunit/phpunit" : " ^9.5"
26+ "orchestra/testbench" : " ^8.0|^9 .0" ,
27+ "phpunit/phpunit" : " ^9.5|^10.0 "
2828 },
2929 "autoload" : {
3030 "psr-4" : {
You can’t perform that action at this time.
0 commit comments