Skip to content

Commit

Permalink
Fixed deps check on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasvargiu committed Oct 31, 2020
1 parent 3ea342c commit 0859a74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ jobs:

- name: "Install dependencies with composer"
run: "composer install --no-interaction --no-progress --no-suggest --prefer-dist"
if: "${{ matrix.deps != 'low' }}"
if: "${{ matrix.deps != 'lowest' }}"

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

- name: "Run PHPUnit"
run: "vendor/bin/phpunit -c ci/github/phpunit/${{ matrix.extension }}.xml"
Expand Down

0 comments on commit 0859a74

Please sign in to comment.