From a2b6dfd814dedc443dc0e529ee9da78604a7f2a3 Mon Sep 17 00:00:00 2001 From: mesilov Date: Thu, 5 Dec 2024 00:24:33 +0600 Subject: [PATCH] Remove prefer-dist flag from Composer command The prefer-dist flag has been removed from the COMPOSER_FLAGS in the unit test workflow configuration. This change allows for potentially more up-to-date installations by not limiting downloads to distribution packages. This can help ensure that the latest code is being tested. Signed-off-by: mesilov --- .github/workflows/tests-unit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests-unit.yml b/.github/workflows/tests-unit.yml index 91ada7d..c714207 100644 --- a/.github/workflows/tests-unit.yml +++ b/.github/workflows/tests-unit.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" jobs: tests: