@@ -14,28 +14,15 @@ jobs:
1414 php : [8.1, 8.0, 7.4, 7.3, 7.2]
1515 laravel : [9.*, 8.*, 7.*, 6.*]
1616 os : [ubuntu-latest]
17- include :
18- - laravel : 9.*
19- testbench : 7.*
20- - laravel : 8.*
21- testbench : 6.*
22- - laravel : 7.*
23- testbench : 5.*
24- - laravel : 6.*
25- testbench : 4.*
26- exclude :
27- - laravel : 9.*
28- php : 7.2
29- - laravel : 9.*
30- php : 7.3
31- - laravel : 9.*
32- php : 7.4
33- - laravel : 8.*
34- php : 7.2
35- - laravel : 6.*
36- php : 8.1
37- - laravel : 7.*
38- php : 8.1
17+ payload :
18+ - { queue: 'github-actions-laravel9-php81', laravel: '10.*', php: '8.2', 'testbench': '8.*' }
19+ - { queue: 'github-actions-laravel9-php81', laravel: '10.*', php: '8.1', 'testbench': '8.*' }
20+ - { queue: 'github-actions-laravel9-php81', laravel: '9.*', php: '8.2', 'testbench': '7.*' }
21+ - { queue: 'github-actions-laravel9-php81', laravel: '9.*', php: '8.1', 'testbench': '7.*' }
22+ - { queue: 'github-actions-laravel9-php80', laravel: '9.*', php: '8.0', 'testbench': '7.*' }
23+ - { queue: 'github-actions-laravel8-php81', laravel: '8.*', php: '8.1', 'testbench': '6.*' }
24+ - { queue: 'github-actions-laravel8-php80', laravel: '8.*', php: '8.0', 'testbench': '6.*' }
25+ - { queue: 'github-actions-laravel8-php74', laravel: '8.*', php: '7.4', 'testbench': '6.*' }
3926
4027 name : PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
4128
5441
5542 steps :
5643 - name : Checkout code
57- uses : actions/checkout@v1
44+ uses : actions/checkout@v3
5845
5946 - name : Setup PHP
6047 uses : shivammathur/setup-php@v2
6653 - name : Install dependencies
6754 run : |
6855 composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
69- composer update --prefer-stable --prefer-dist --no-interaction --no-suggest
56+ composer update --prefer-stable --prefer-dist --no-interaction
7057 - name : Execute tests
7158 env :
7259 CI_DB_DRIVER : mysql
0 commit comments