Skip to content

Commit

Permalink
Skip prefer-lowest dependancy version
Browse files Browse the repository at this point in the history
  • Loading branch information
olssonm committed Dec 10, 2024
1 parent f542d90 commit dfc5e2a
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,13 @@ jobs:
matrix:
php: [8.4, 8.3, 8.2, 8.1]
laravel: [11.*, 10.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- laravel: 11.*
php: 8.1
- laravel: 10.*
php: 8.4
- php: 8.1
laravel: 11.*
- php: 8.4
laravel: 10.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}
name: P${{ matrix.php }} - L${{ matrix.laravel }}

steps:
- name: Checkout code
Expand All @@ -36,7 +35,7 @@ jobs:
- name: Install dependencies
run: |
composer require "illuminate/support:${{ matrix.laravel }}" --no-interaction --no-progress --no-suggest
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-progress
composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: composer test

0 comments on commit dfc5e2a

Please sign in to comment.