Skip to content

Commit 3d868df

Browse files
committed
Remove conflicting matrix versions in pipeline
1 parent 43bfc4d commit 3d868df

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
matrix:
2121
php-versions: ['8.1', '8.2', '8.3']
2222
laravel-versions: ['9.*', '10.*', '11.*', '12.*']
23+
exclude:
24+
- php-versions: '8.1'
25+
laravel-versions: '11.*' # Laravel 11 typically requires PHP 8.2+
26+
- php-versions: '8.1'
27+
laravel-versions: '12.*' # Laravel 12 typically requires PHP 8.2+
2328

2429
steps:
2530
- name: Checkout code
@@ -48,8 +53,5 @@ jobs:
4853
composer install --prefer-dist --no-progress --no-interaction
4954
composer update "illuminate/support:${{ matrix.laravel-versions }}" "illuminate/container:${{ matrix.laravel-versions }}" --with-all-dependencies --prefer-dist --no-progress --no-interaction
5055
51-
- name: Print lock (tmp)
52-
run: cat composer.lock
53-
5456
- name: Run PHPUnit tests
5557
run: vendor/bin/phpunit

0 commit comments

Comments
 (0)