Skip to content

Commit 6675520

Browse files
committed
wip
1 parent 37142c0 commit 6675520

File tree

1 file changed

+37
-58
lines changed

1 file changed

+37
-58
lines changed

.github/workflows/main.yml

Lines changed: 37 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -14,63 +14,40 @@ jobs:
1414

1515
strategy:
1616
fail-fast: false
17-
matrix:
18-
php: ['8.4', '8.3', '8.2', '8.1', '8.0']
19-
laravel: ['8.*', '9.*', '10.*', '12.*']
20-
dependency-version: [prefer-stable]
21-
exclude:
22-
- laravel: 11.*
23-
php: '8.2'
24-
- laravel: 11.*
25-
php: '8.1'
26-
- laravel: 11.*
27-
php: '8.0'
28-
- laravel: 10.*
29-
php: '8.0'
30-
- laravel: 12.*
31-
php: '8.1'
32-
- laravel: 12.*
33-
php: '8.0'
34-
include:
35-
- laravel: 11.*
36-
php: '8.3'
37-
testbench: 9.*
38-
- laravel: 10.*
39-
php: '8.3'
40-
testbench: 8.*
41-
- laravel: 10.*
42-
php: '8.2'
43-
testbench: 8.*
44-
- laravel: 10.*
45-
php: '8.1'
46-
testbench: 8.*
47-
- laravel: 9.*
48-
php: '8.3'
49-
testbench: 7.*
50-
- laravel: 9.*
51-
php: '8.2'
52-
testbench: 7.*
53-
- laravel: 9.*
54-
php: '8.1'
55-
testbench: 7.*
56-
- laravel: 9.*
57-
php: '8.0'
58-
testbench: 7.*
59-
- laravel: 8.*
60-
php: '8.3'
61-
testbench: 6.*
62-
- laravel: 8.*
63-
php: '8.2'
64-
testbench: 6.*
65-
- laravel: 8.*
66-
php: '8.1'
67-
testbench: 6.*
68-
- laravel: 8.*
69-
php: '8.0'
70-
testbench: 6.*
71-
- laravel: 12.*
72-
php: '8.2'
73-
testbench: 10.*
17+
matrix:
18+
php: ['8.4', '8.3', '8.2', '8.1', '8.0']
19+
laravel: ['8.*', '9.*', '10.*', '11.*', '12.*']
20+
stability: [prefer-stable]
21+
exclude:
22+
- php: 8.0
23+
laravel: 10.*
24+
- php: 8.0
25+
laravel: 11.*
26+
- php: 8.0
27+
laravel: 12.*
28+
- php: 8.1
29+
laravel: 11.*
30+
- php: 8.1
31+
laravel: 12.*
32+
- php: 8.2
33+
laravel: 8.*
34+
- php: 8.3
35+
laravel: 8.*
36+
- php: 8.4
37+
laravel: 8.*
38+
include:
39+
- laravel: 8.*
40+
testbench: 6.23
41+
- laravel: 9.*
42+
testbench: 7.*
43+
- laravel: 10.*
44+
testbench: 8.*
45+
- laravel: 11.*
46+
testbench: 9.*
47+
- laravel: 12.*
48+
testbench: 10.*
49+
dependency-version: [prefer-stable]
50+
7451

7552
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ubuntu-latest
7653

@@ -86,7 +63,9 @@ jobs:
8663
coverage: none
8764

8865
- name: Install dependencies
89-
if: "matrix.laravel != '11.*' || matrix.php != '8.3'"
66+
if: >
67+
(matrix.laravel != '11.*' && matrix.php != '8.3') &&
68+
(matrix.laravel != '12.*' && matrix.php != '8.3')
9069
run: |
9170
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
9271
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction

0 commit comments

Comments
 (0)