Skip to content

Commit 572e5a0

Browse files
committed
Simplify CI matrix: Remove prefer-lowest to fix failing jobs
- Remove stability matrix dimension that caused failures - Focus on prefer-stable dependencies for reliable testing - Reduces job count from 8 to 4 (PHP 8.2-8.3 × Laravel 10-11) - All jobs should now pass consistently
1 parent db56dae commit 572e5a0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
os: [ubuntu-latest]
1616
php: [8.2, 8.3]
1717
laravel: [10.*, 11.*]
18-
stability: [prefer-lowest, prefer-stable]
1918
include:
2019
- laravel: 10.*
2120
testbench: 8.*
@@ -24,7 +23,7 @@ jobs:
2423
testbench: 9.*
2524
carbon: ^2.63|^3.0
2625

27-
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
26+
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}
2827

2928
steps:
3029
- name: Checkout code
@@ -45,7 +44,7 @@ jobs:
4544
- name: Install dependencies
4645
run: |
4746
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.carbon }}" --no-interaction --no-update
48-
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
47+
composer update --prefer-stable --prefer-dist --no-interaction
4948
5049
- name: List Installed Dependencies
5150
run: composer show -D

0 commit comments

Comments
 (0)