Skip to content

Commit 75d1646

Browse files
committed
Update GitHub Actions for Laravel 12
1 parent 7485d80 commit 75d1646

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,27 @@
11
name: run-tests
22

3-
on: [push, pull_request]
3+
on:
4+
- push
5+
- pull_request
46

57
jobs:
68
test:
79
runs-on: ${{ matrix.os }}
10+
811
strategy:
912
fail-fast: true
1013
matrix:
1114
os: [ubuntu-latest, windows-latest]
1215
php: [8.3, 8.2]
13-
laravel: [10.*, 11.*]
16+
laravel: ['10.*', '11.*', '12.*']
1417
stability: [prefer-stable]
1518
include:
1619
- laravel: 10.*
1720
testbench: 8.*
1821
- laravel: 11.*
1922
testbench: 9.*
23+
- laravel: 12.*
24+
testbench: 10.*
2025

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

0 commit comments

Comments
 (0)