From 4de53f09a5680aa2e8d4372a8f779a57a46038ce Mon Sep 17 00:00:00 2001 From: Piotr Kreft Date: Fri, 12 Feb 2021 09:45:36 +0100 Subject: [PATCH] Removed non-supported composer option --- .github/workflows/ci.yml | 2 +- .github/workflows/tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ee2e84e..59c3f1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: coverage: pcov - name: Install dependencies - run: composer update --prefer-dist --no-progress --no-suggest --prefer-stable + run: composer update --prefer-dist --no-progress --prefer-stable - name: PHPUnit with coverage run: vendor/bin/phpunit --coverage-clover=build/logs/clover.xml tests diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 10611b1..f455b72 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,7 +26,7 @@ jobs: run: composer validate - name: Install dependencies - run: composer update --prefer-dist --no-progress --no-suggest ${{ matrix.composer-opts }} --prefer-stable + run: composer update --prefer-dist --no-progress ${{ matrix.composer-opts }} --prefer-stable - name: Run test suite run: composer test