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