Skip to content

Commit b59b658

Browse files
Fix CI
1 parent 71c4789 commit b59b658

File tree

1 file changed

+20
-21
lines changed

1 file changed

+20
-21
lines changed

.github/workflows/run-tests.yml

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: run-tests
1+
name: Tests
22

33
on:
44
push:
@@ -8,29 +8,28 @@ on:
88

99
jobs:
1010
test:
11-
runs-on: ${{ matrix.os }}
11+
runs-on: ubuntu-latest
1212
strategy:
13-
fail-fast: true
1413
matrix:
15-
- php: 8.4
16-
env:
17-
laravel: 10.*
18-
testbench: 8.*
19-
- php: 8.3
20-
env:
21-
laravel: 10.*
22-
testbench: 8.*
23-
- php: 8.4
24-
env:
25-
laravel: 11.*
26-
testbench: 9.*
27-
- php: 8.4
28-
env:
29-
laravel: 12.*
30-
testbench: 10.*
31-
14+
include:
15+
- php: 8.4
16+
env:
17+
LARAVEL: 10.*
18+
TESTBENCH: 8.*
19+
- php: 8.3
20+
env:
21+
LARAVEL: 10.*
22+
TESTBENCH: 8.*
23+
- php: 8.4
24+
env:
25+
LARAVEL: 11.*
26+
TESTBENCH: 9.*
27+
- php: 8.4
28+
env:
29+
LARAVEL: 12.*
30+
TESTBENCH: 10.*
31+
env: ${{ matrix.env }}
3232
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
33-
3433
steps:
3534
- name: Checkout code
3635
uses: actions/checkout@v4

0 commit comments

Comments
 (0)