Skip to content

Commit 9037743

Browse files
committed
Exclude Laravel 13 on PHP 8.2 in CI
Add an exclude rule to the GitHub Actions test matrix to skip the combination of Laravel 13.* with PHP 8.2. This prevents running a known-incompatible or undesired job combination in .github/workflows/run-tests.yml and avoids related CI failures.
1 parent 0e1be78 commit 9037743

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ jobs:
2020
php: [8.2, 8.3, 8.4]
2121
laravel: [13.*, 12.*, 11.*]
2222
stability: [prefer-lowest, prefer-stable]
23+
exclude:
24+
- laravel: 13.*
25+
php: 8.2
2326
include:
2427
- laravel: 13.*
2528
testbench: 11.*

0 commit comments

Comments
 (0)