From a103c711632034b9f9c42b5281f20cfdfd5d597e Mon Sep 17 00:00:00 2001 From: DeveloperMarius Date: Tue, 23 Mar 2021 13:28:17 +0100 Subject: [PATCH] Try to fix composer install missing --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a20492f..e3c354e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,10 +62,10 @@ jobs: php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}- - name: Install lowest dependencies with composer if: matrix.dependencies == 'lowest' - run: php composer update --no-ansi --no-interaction --no-progress --prefer-lowest + run: composer update --no-ansi --no-interaction --no-progress --prefer-lowest - name: Install highest dependencies with composer if: matrix.dependencies == 'highest' - run: php composer update --no-ansi --no-interaction --no-progress + run: composer update --no-ansi --no-interaction --no-progress # - name: Install dependencies # run: composer install --prefer-dist - name: Run tests with phpunit