From 0859a748f36fb315c10854fc44ce914056cea39a Mon Sep 17 00:00:00 2001 From: Thomas Vargiu Date: Sat, 31 Oct 2020 11:01:31 +0100 Subject: [PATCH] Fixed deps check on CI --- .github/workflows/continuous-integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 67e8490..2af2168 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -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"