From 3c17f9f824d189999b6cc3f6e1a8be909920081c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?SIGUI=20Kess=C3=A9=20Emmanuel?= Date: Tue, 7 Nov 2023 05:04:06 +0100 Subject: [PATCH] :green_heart: Fix dependencies installation --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8761942..56bcdfb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,9 @@ jobs: coverage: pcov - name: 🍱 Install Composer dependencies - run: composer update --${{ matrix.dependency-version }} --no-interaction --prefer-dist + run: | + composer install -q --no-ansi --no-cache --no-interaction --no-scripts --no-progress --prefer-dist + composer update --${{ matrix.dependency-version }} --no-interaction --prefer-dist - name: ✅ Check code lint run: composer lint