File tree Expand file tree Collapse file tree 2 files changed +14
-10
lines changed Expand file tree Collapse file tree 2 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 88
99jobs :
1010 test :
11- runs-on : ${{ matrix.os }}
11+ runs-on : ubuntu-latest
1212 strategy :
13- fail-fast : false
13+ fail-fast : true
1414 matrix :
15- php : [8.0, 7.4, 7.3]
16- laravel : [^8.12]
17- dependency-version : [prefer-lowest, prefer-stable]
18- os : [ubuntu-latest]
15+ php : [8.1,8.0, 7.4, 7.3]
16+ laravel : [^8.12, ^9.0]
17+ exclude :
18+ - php : 7.3
19+ laravel : ' ^9.0'
20+ - php : 7.4
21+ laravel : ' ^9.0'
1922
20- name : P${{ matrix.php }} - L${{ matrix.laravel }} ${{ matrix.dependency-version }} - ${{ matrix.os }}
23+ name : P${{ matrix.php }} - L${{ matrix.laravel }}
2124
2225 steps :
2326 - name : Checkout code
3841
3942 - name : Install dependencies
4043 run : |
41- composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
44+ composer require "illuminate/contracts=${{ matrix.laravel }}" --prefer-dist --no-interaction --no-update
45+ composer update --prefer-dist --no-interaction --no-progress
4246
4347 - name : Execute tests
4448 run : vendor/bin/phpunit
Original file line number Diff line number Diff line change 44 "type" : " utility" ,
55 "require" : {
66 "php" : " ^7.3|^8.0" ,
7- "illuminate/database" : " ^8.12" ,
8- "illuminate/events" : " ^8.12"
7+ "illuminate/database" : " ^8.12|^9.0 " ,
8+ "illuminate/events" : " ^8.12|^9.0 "
99 },
1010 "require-dev" : {
1111 "phpunit/phpunit" : " ^9.3"
You can’t perform that action at this time.
0 commit comments