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 e04a849 commit 65624f4Copy full SHA for 65624f4
.github/workflows/run-tests.yml
@@ -2,19 +2,22 @@ name: run-tests
2
3
on:
4
push:
5
- branches: [main]
+ branches:
6
+ - main
7
pull_request:
8
9
10
11
jobs:
12
test:
13
runs-on: ${{ matrix.os }}
14
+
15
strategy:
16
fail-fast: false
17
matrix:
18
os: [ubuntu-latest]
19
php: [8.2, 8.1, 8.0]
- laravel: [9.*, 8.*, 10.*]
20
+ laravel: ['8.*', '9.*', '10.*', '11.*']
21
stability: [prefer-lowest, prefer-stable]
22
include:
23
- laravel: 10.*
@@ -23,9 +26,15 @@ jobs:
26
testbench: 7.*
24
27
- laravel: 8.*
25
28
testbench: ^6.23
29
+ - laravel: 11.*
30
+ testbench: 9.*
31
exclude:
32
- php: 8.0
33
+ php: 8.0
34
35
+ php: 8.1
36
37
38
39
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
40
0 commit comments