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 ef0bbbe commit 4a6c93bCopy full SHA for 4a6c93b
.github/workflows/run-tests.yml
@@ -2,23 +2,33 @@ 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]
- php: [8.1, 8.0]
- laravel: [9.*]
19
+ php: [8.0, 8.1, '8.2']
20
+ laravel: ['9.*', '11.*']
21
stability: [prefer-lowest, prefer-stable]
22
include:
23
- laravel: 9.*
24
testbench: 7.*
25
+ - laravel: 11.*
26
+ testbench: 9.*
27
+ exclude:
28
29
+ php: 8.0
30
31
+ php: 8.1
32
33
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
34
0 commit comments