Skip to content

Commit

Permalink
ci: run --prefer-lowest run only for lowest supported PHP version
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris8934 committed Mar 8, 2024
1 parent d96491f commit 1b9d4bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ jobs:

- name: "Install lowest dependencies"
if: ${{ matrix.dependencies == 'lowest' }}
run: "composer update --prefer-lowest --no-interaction --no-progress --no-suggest"
run: "composer update --prefer-lowest --no-interaction --no-progress"

- name: "Install highest dependencies"
if: ${{ matrix.dependencies == 'highest' }}
run: "composer update --no-interaction --no-progress --no-suggest"
run: "composer update --no-interaction --no-progress"

- name: "Tests"
run: "vendor/bin/phpunit"

0 comments on commit 1b9d4bc

Please sign in to comment.