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 28ceef0 commit a207744Copy full SHA for a207744
.github/workflows/run-tests.yml
@@ -3,19 +3,22 @@ name: run-tests
3
on:
4
workflow_dispatch:
5
push:
6
- branches: [main]
+ branches:
7
+ - main
8
pull_request:
9
10
11
12
jobs:
13
test:
14
runs-on: ${{ matrix.os }}
15
+
16
strategy:
17
fail-fast: false
18
matrix:
19
os: [ubuntu-latest, windows-latest, macos-latest]
20
php: [8.4, 8.3]
- laravel: [12.*, 11.*]
21
+ laravel: ['11.*', '12.*', '13.*']
22
stability: [prefer-lowest, prefer-stable]
23
24
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
0 commit comments