Skip to content

Commit fc33cdd

Browse files
committed
Update GitHub Actions for Laravel 13
1 parent c7171fa commit fc33cdd

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/tests.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,30 @@ name: Tests
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
67
pull_request:
7-
branches: [main]
8+
branches:
9+
- main
810

911
jobs:
1012
test:
1113
runs-on: ${{ matrix.os }}
14+
1215
strategy:
1316
fail-fast: true
1417
matrix:
1518
os: [ubuntu-latest, windows-latest]
1619
php: [8.4]
17-
laravel: [12.*, 11.*]
20+
laravel: ['11.*', '12.*', '13.*']
1821
stability: [prefer-lowest, prefer-stable]
1922
include:
2023
- laravel: 12.*
2124
testbench: 10.*
2225
- laravel: 11.*
2326
testbench: 9.*
27+
- laravel: 13.*
28+
testbench: 11.*
2429

2530
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2631

0 commit comments

Comments
 (0)