We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7171fa commit fc33cddCopy full SHA for fc33cdd
.github/workflows/tests.yml
@@ -2,25 +2,30 @@ name: 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.4]
- laravel: [12.*, 11.*]
20
+ laravel: ['11.*', '12.*', '13.*']
21
stability: [prefer-lowest, prefer-stable]
22
include:
23
- laravel: 12.*
24
testbench: 10.*
25
- laravel: 11.*
26
testbench: 9.*
27
+ - laravel: 13.*
28
+ testbench: 11.*
29
30
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
31
0 commit comments