We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56f2b51 commit 6e92b90Copy full SHA for 6e92b90
.github/workflows/run-tests.yml
@@ -11,21 +11,26 @@ on:
11
jobs:
12
test:
13
runs-on: ${{ matrix.os }}
14
+
15
strategy:
16
fail-fast: true
17
matrix:
18
os: [ubuntu-latest, windows-latest]
19
php: [8.1, 8.2, 8.3]
- laravel: ["10.*", "11.*"]
20
+ laravel: ['10.*', '11.*', '12.*']
21
stability: [prefer-lowest, prefer-stable]
22
include:
23
- laravel: 10.*
24
testbench: ^8.0
25
- laravel: 11.*
26
testbench: ^9.0
27
+ - laravel: 12.*
28
+ testbench: ^10.0
29
exclude:
30
31
php: 8.1
32
33
+ php: 8.1
34
35
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
36
0 commit comments