Skip to content

Commit

Permalink
✏️ Fix preferred dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
siguici committed Feb 6, 2024
1 parent 774233e commit cefb19a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.1, 8.2, 8.3]
dependencies: [lowest, highest]
dependencies: [lower, stable]
experimental: [false]
name: 👷 CI PHP-${{ matrix.php }} ${{ matrix.dependencies }} on ${{ matrix.os }}

Expand Down Expand Up @@ -44,8 +44,8 @@ jobs:

- name: 🍱 Install Composer dependencies
run: |
composer install -q --no-ansi --no-cache --no-interaction --no-scripts --no-progress --prefer-dist
composer update --${{ matrix.dependencies }} --no-interaction --prefer-dist
composer install -q --no-ansi --no-cache --no-interaction --no-scripts --no-progress --prefer-${{ matrix.dependencies }}
composer update --prefer-${{ matrix.dependencies }} --no-interaction
- name: ✅ Check code lint
run: composer check
Expand Down

0 comments on commit cefb19a

Please sign in to comment.