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 e7d637e commit 25752f2Copy full SHA for 25752f2
.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: true
17
matrix:
18
os: [ubuntu-latest, windows-latest]
19
php: [8.3, 8.2, 8.1, 8.0]
- laravel: [11.*, 10.*, 9.*]
20
+ laravel: ['9.*', '10.*', '11.*', '12.*']
21
stability: [prefer-lowest, prefer-stable]
22
include:
23
- laravel: 11.*
@@ -33,6 +36,10 @@ jobs:
33
36
php: 8.1
34
37
35
38
php: 8.0
39
+ - laravel: 12.*
40
+ php: 8.1
41
42
+ php: 8.0
43
44
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
45
0 commit comments