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 536af1d commit a955cc2Copy full SHA for a955cc2
.github/workflows/run-tests.yml
@@ -1,6 +1,7 @@
1
name: test
2
3
-on: [push]
+on:
4
+ - push
5
6
jobs:
7
test:
@@ -10,12 +11,17 @@ jobs:
10
11
fail-fast: true
12
matrix:
13
os: [ubuntu-latest]
- php: [8.1]
14
- laravel: [10.*]
+ php: [8.1, '8.2']
15
+ laravel: ['10.*', '11.*']
16
stability: [prefer-lowest, prefer-stable]
17
include:
18
- laravel: 10.*
19
testbench: 8.*
20
+ - laravel: 11.*
21
+ testbench: 9.*
22
+ exclude:
23
24
+ php: 8.1
25
26
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }}
27
0 commit comments