Skip to content

Commit dae3c2c

Browse files
committed
Update GitHub Actions for Laravel 12
1 parent b76c6cb commit dae3c2c

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/run-tests.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,30 @@ name: run-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.2, 8.1]
17-
laravel: [10.*]
20+
laravel: ['10.*', '12.*']
1821
stability: [prefer-lowest, prefer-stable]
1922
include:
2023
- laravel: 10.*
2124
testbench: 8.*
2225
carbon: ^2.63
26+
exclude:
27+
- laravel: 12.*
28+
php: 8.1
2329

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

0 commit comments

Comments
 (0)