Skip to content

Commit 6e92b90

Browse files
committed
Update GitHub Actions for Laravel 12
1 parent 56f2b51 commit 6e92b90

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,26 @@ on:
1111
jobs:
1212
test:
1313
runs-on: ${{ matrix.os }}
14+
1415
strategy:
1516
fail-fast: true
1617
matrix:
1718
os: [ubuntu-latest, windows-latest]
1819
php: [8.1, 8.2, 8.3]
19-
laravel: ["10.*", "11.*"]
20+
laravel: ['10.*', '11.*', '12.*']
2021
stability: [prefer-lowest, prefer-stable]
2122
include:
2223
- laravel: 10.*
2324
testbench: ^8.0
2425
- laravel: 11.*
2526
testbench: ^9.0
27+
- laravel: 12.*
28+
testbench: ^10.0
2629
exclude:
2730
- laravel: 11.*
2831
php: 8.1
32+
- laravel: 12.*
33+
php: 8.1
2934

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

0 commit comments

Comments
 (0)