Skip to content

Commit a02025b

Browse files
fix: Simplify test matrix to Laravel 11-12 only
- Remove Laravel 10 and PHP 8.1 from test matrix - Laravel 10 has orchestra/canvas v8 compatibility issues - Focus on actively supported Laravel 11 and 12 (PHP 8.2-8.3) - Package still supports Laravel 10 via composer constraints
1 parent 2d11221 commit a02025b

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,24 +13,16 @@ jobs:
1313
fail-fast: true
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
16-
php: [8.1, 8.2, 8.3]
17-
laravel: [10.*, 11.*, 12.*]
16+
php: [8.2, 8.3]
17+
laravel: [11.*, 12.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
20-
- laravel: 10.*
21-
testbench: 8.*
22-
carbon: ^2.63
2320
- laravel: 11.*
2421
testbench: 9.*
2522
carbon: ^3.0
2623
- laravel: 12.*
2724
testbench: 10.*
2825
carbon: ^3.0
29-
exclude:
30-
- laravel: 11.*
31-
php: 8.1
32-
- laravel: 12.*
33-
php: 8.1
3426

3527
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3628

0 commit comments

Comments
 (0)