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 7485d80 commit 75d1646Copy full SHA for 75d1646
.github/workflows/run-tests.yml
@@ -1,22 +1,27 @@
1
name: run-tests
2
3
-on: [push, pull_request]
+on:
4
+ - push
5
+ - pull_request
6
7
jobs:
8
test:
9
runs-on: ${{ matrix.os }}
10
+
11
strategy:
12
fail-fast: true
13
matrix:
14
os: [ubuntu-latest, windows-latest]
15
php: [8.3, 8.2]
- laravel: [10.*, 11.*]
16
+ laravel: ['10.*', '11.*', '12.*']
17
stability: [prefer-stable]
18
include:
19
- laravel: 10.*
20
testbench: 8.*
21
- laravel: 11.*
22
testbench: 9.*
23
+ - laravel: 12.*
24
+ testbench: 10.*
25
26
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
27
0 commit comments