Skip to content

Commit a207744

Browse files
committed
Update GitHub Actions for Laravel 13
1 parent 28ceef0 commit a207744

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,22 @@ name: run-tests
33
on:
44
workflow_dispatch:
55
push:
6-
branches: [main]
6+
branches:
7+
- main
78
pull_request:
8-
branches: [main]
9+
branches:
10+
- main
911

1012
jobs:
1113
test:
1214
runs-on: ${{ matrix.os }}
15+
1316
strategy:
1417
fail-fast: false
1518
matrix:
1619
os: [ubuntu-latest, windows-latest, macos-latest]
1720
php: [8.4, 8.3]
18-
laravel: [12.*, 11.*]
21+
laravel: ['11.*', '12.*', '13.*']
1922
stability: [prefer-lowest, prefer-stable]
2023

2124
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

0 commit comments

Comments
 (0)