@@ -12,15 +12,15 @@ jobs:
1212 strategy :
1313 matrix :
1414 payload :
15- - { queue: 'github-actions-laravel9-php81', laravel: '9.*', php: '8.1', 'testbench': '7.*'}
16- - { queue: 'github-actions-laravel9-php80', laravel: '9.*', php: '8.0', 'testbench': '7.*'}
17- - { queue: 'github-actions-laravel8-php81', laravel: '8.*', php: '8.1', 'testbench': '6.*'}
18- - { queue: 'github-actions-laravel8-php80', laravel: '8.*', php: '8.0', 'testbench': '6.*'}
19- - { queue: 'github-actions-laravel8-php74', laravel: '8.*', php: '7.4', 'testbench': '6.*'}
20- - { queue: 'github-actions-laravel7-php80', laravel: '7.*', php: '8.0', 'testbench': '5.*' }
21- - { queue: 'github-actions-laravel7-php74', laravel: '7.*', php: '7.4', 'testbench': '5.*' }
22- - { queue: 'github-actions-laravel6-php80', laravel: '6.*', php: '8.0', 'testbench': '4.*' }
23- - { queue: 'github-actions-laravel6-php74', laravel: '6.*', php: '7.4', 'testbench': '4.*' }
15+ - { laravel: '9.*', php: '8.1', 'testbench': '7.*'}
16+ - { laravel: '9.*', php: '8.0', 'testbench': '7.*'}
17+ - { laravel: '8.*', php: '8.1', 'testbench': '6.*'}
18+ - { laravel: '8.*', php: '8.0', 'testbench': '6.*'}
19+ - { laravel: '8.*', php: '7.4', 'testbench': '6.*'}
20+ - { laravel: '7.*', php: '8.0', 'testbench': '5.*' }
21+ - { laravel: '7.*', php: '7.4', 'testbench': '5.*' }
22+ - { laravel: '6.*', php: '8.0', 'testbench': '4.*' }
23+ - { laravel: '6.*', php: '7.4', 'testbench': '4.*' }
2424
2525 name : PHP ${{ matrix.payload.php }} - Laravel ${{ matrix.payload.laravel }}
2626
3737
3838 - name : Execute checks
3939 run : |
40- composer install
40+ composer require "laravel/framework:${{ matrix.payload.laravel }}" "orchestra/testbench:${{ matrix.payload.testbench }}" --no-interaction --no-update
41+ composer update --prefer-stable --prefer-dist --no-interaction --no-suggest
4142 vendor/bin/phpstan
0 commit comments