From 799edb310e369aab67d55026d2fff5729c0da748 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Wed, 15 Feb 2023 15:09:13 +0100 Subject: [PATCH] Fix: Install dependencies without ramsey/composer-install --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 02a8c1d..38790ad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,10 +49,8 @@ jobs: ini-values: zend.assertions=1, error_reporting=-1, display_errors=On coverage: xdebug - # Install dependencies and handle caching in one go. - # @link https://github.com/marketplace/actions/install-composer-dependencies - name: Install Composer dependencies - uses: "ramsey/composer-install@v2" + run: composer install --ansi --no-interaction --no-progress - name: Execute Unit Tests run: vendor/bin/phpunit --coverage-text