Skip to content

Commit 348551f

Browse files
committed
Update workflows to include Laravel 12
1 parent feee489 commit 348551f

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/phpstan.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
matrix:
2020
os: [ubuntu-latest]
2121
php: [8.4, 8.3, 8.2, 8.1]
22-
laravel: [10.*, 11.*]
22+
laravel: [10.*, 11.*, 12.*]
2323
stability: [prefer-stable]
2424
include:
2525
- laravel: 10.*
@@ -28,11 +28,16 @@ jobs:
2828
- laravel: 11.*
2929
testbench: 9.*
3030
phpstan_neon: phpstan.neon
31+
- laravel: 12.*
32+
testbench: 10.*
33+
phpstan_neon: phpstan.neon
3134
exclude:
3235
- laravel: 10.*
3336
php: 8.4
3437
- laravel: 11.*
3538
php: 8.1
39+
- laravel: 12.*
40+
php: 8.1
3641

3742
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.os }}
3843

.github/workflows/run-test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,22 @@ jobs:
2121
matrix:
2222
os: [ubuntu-latest]
2323
php: [8.4, 8.3, 8.2, 8.1]
24-
laravel: [10.*, 11.*]
24+
laravel: [10.*, 11.*, 12.*]
2525
stability: [prefer-stable]
2626
include:
2727
- laravel: 10.*
2828
testbench: 8.*
2929
- laravel: 11.*
3030
testbench: 9.*
31+
- laravel: 12.*
32+
testbench: 10.*
3133
exclude:
3234
- laravel: 10.*
3335
php: 8.4
3436
- laravel: 11.*
3537
php: 8.1
38+
- laravel: 12.*
39+
php: 8.1
3640

3741
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.os }}
3842

0 commit comments

Comments
 (0)