From 3b3104590015a88dae78e0606140ecdf878412e6 Mon Sep 17 00:00:00 2001 From: mesilov Date: Thu, 5 Dec 2024 00:25:59 +0600 Subject: [PATCH] Remove prefer-dist from COMPOSER_FLAGS in CI workflow. Eliminating the --prefer-dist option can reduce reliance on distribution archives, allowing for more consistent test execution. This change aims to enhance the flexibility and potential versions available during the dependency resolution in the CI pipeline. Signed-off-by: mesilov --- .github/workflows/tests-functional.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests-functional.yml b/.github/workflows/tests-functional.yml index 244ba73..2227491 100644 --- a/.github/workflows/tests-functional.yml +++ b/.github/workflows/tests-functional.yml @@ -5,7 +5,7 @@ on: pull_request: env: - COMPOSER_FLAGS: "--ansi --no-interaction --no-progress --prefer-dist" + COMPOSER_FLAGS: "--ansi --no-interaction --no-progress" DATABASE_HOST: localhost DATABASE_USER: b24phpLibTest DATABASE_PASSWORD: b24phpLibTest