Skip to content

Commit 61b1231

Browse files
committed
Expands test matrix to include newer PHP/Laravel versions
Extends the test matrix in the CI workflow to cover PHP versions 8.2, 8.3, and 8.4, and Laravel versions 11 and 12. This ensures compatibility and reduces the risk of regressions with newer releases.
1 parent 92c36b1 commit 61b1231

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
php: [ 8.1 ]
13-
laravel: [ 10.* ]
12+
php: [ 8.1, 8.2, 8.3, 8.4 ]
13+
laravel: [ 10.*, 11.*, 12.* ]
1414
stability: [ prefer-stable ]
1515
exclude:
1616
# Laravel 11 requires PHP 8.2+
@@ -38,8 +38,8 @@ jobs:
3838
strategy:
3939
fail-fast: false
4040
matrix:
41-
php: [ 8.1 ]
42-
laravel: [ 10.* ]
41+
php: [ 8.1, 8.2, 8.3, 8.4 ]
42+
laravel: [ 10.*, 11.*, 12.* ]
4343
stability: [ prefer-stable ]
4444
exclude:
4545
# Laravel 11 requires PHP 8.2+

0 commit comments

Comments
 (0)