@@ -12,15 +12,15 @@ jobs:
12
12
strategy :
13
13
matrix :
14
14
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.*' }
24
24
25
25
name : PHP ${{ matrix.payload.php }} - Laravel ${{ matrix.payload.laravel }}
26
26
37
37
38
38
- name : Execute checks
39
39
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
41
42
vendor/bin/phpstan
0 commit comments