We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b76c6cb commit dae3c2cCopy full SHA for dae3c2c
.github/workflows/run-tests.yml
@@ -2,24 +2,30 @@ 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.2, 8.1]
- laravel: [10.*]
20
+ laravel: ['10.*', '12.*']
21
stability: [prefer-lowest, prefer-stable]
22
include:
23
- laravel: 10.*
24
testbench: 8.*
25
carbon: ^2.63
26
+ exclude:
27
+ - laravel: 12.*
28
+ php: 8.1
29
30
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
31
0 commit comments