File tree Expand file tree Collapse file tree 1 file changed +24
-7
lines changed Expand file tree Collapse file tree 1 file changed +24
-7
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,28 @@ on: [push, pull_request]
55jobs :
66 build :
77 runs-on : ubuntu-latest
8-
9- strategy :
10- matrix :
11- php-version : ['8.0', '8.1', '8.2']
12- composer-flags : ["--prefer-lowest", ""]
8+ name : PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
9+
10+ strategy :
11+ fail-fast : true
12+ matrix :
13+ php : [ 8.2, 8.1, 8.0]
14+ laravel : [ 10.*, 9.*, 8.*]
15+ composer-flags : ["--prefer-lowest"]
16+ include :
17+ - laravel : 10.*
18+ testbench : 8.*
19+ - laravel : 9.*
20+ testbench : 7.*
21+ - laravel : 8.*
22+ testbench : 6.*
23+ exclude :
24+ - laravel : 10.*
25+ php : 8.0
26+ - laravel : 10.*
27+ php : 7.4
28+ - laravel : 9.*
29+ php : 7.4
1330
1431 steps :
1532 - name : Checkout
2340
2441 - name : Install dependencies
2542 run : |
26- composer self -update
27- composer update ${{ matrix.composer-flags }} --no-interaction --prefer-source
43+ composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no -update
44+ composer update --prefer-stable --prefer-dist --no-interaction --no-suggest
2845
2946 - name : Run tests
3047 run : ./vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
You can’t perform that action at this time.
0 commit comments