Skip to content

Commit a22fd5e

Browse files
authored
Update tests.yml
1 parent b76e40f commit a22fd5e

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

.github/workflows/tests.yml

+14-8
Original file line numberDiff line numberDiff line change
@@ -9,34 +9,40 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
php: [7.3, 7.4, 8.0]
12+
php: [7.1, 7.2, 7.3, 7.4, 8.0]
1313
laravel: [5.6.*, 5.7.*, 5.8.*, 6.*, 7.*, 8.*]
1414
include:
1515
- laravel: 5.6.*
1616
testbench: 3.6.*
17-
phpunit: 7.*
1817
- laravel: 5.7.*
1918
testbench: 3.7.*
20-
phpunit: 7.*
2119
- laravel: 5.8.*
2220
testbench: 3.8.*
23-
phpunit: 8.*
2421
- laravel: 6.*
2522
testbench: 4.*
26-
phpunit: 9.*
2723
- laravel: 7.*
2824
testbench: 5.*
29-
phpunit: 9.*
3025
- laravel: 8.*
3126
testbench: 6.*
32-
phpunit: 9.*
3327
exclude:
3428
- laravel: 5.6.*
3529
php: 8.0
3630
- laravel: 5.7.*
3731
php: 8.0
3832
- laravel: 5.8.*
3933
php: 8.0
34+
- laravel: 6.*
35+
php: 7.1
36+
- laravel: 7.*
37+
php: 7.1
38+
- laravel: 8.*
39+
php: 7.1
40+
- laravel: 6.*
41+
php: 7.2
42+
- laravel: 7.*
43+
php: 7.2
44+
- laravel: 8.*
45+
php: 7.2
4046

4147
steps:
4248
- name: Checkout Code
@@ -49,7 +55,7 @@ jobs:
4955

5056
- name: Install Dependencies
5157
run: |
52-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "phpunit/phpunit:${{ matrix.phpunit }}" --no-interaction --no-update
58+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
5359
composer update --prefer-dist --no-interaction --no-progress --no-suggest
5460
5561
- name: Execute tests

0 commit comments

Comments
 (0)