From 65c425cfb022754a3a0fcec470f668bd23c7ad7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ewilan=20Rivi=C3=A8re?= Date: Sat, 24 Aug 2024 16:45:36 +0200 Subject: [PATCH] chore: Update GitHub workflow to use composer for dependency management and execute tests with vendor/bin/pest --ci --- .github/workflows/run-tests-alpine.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests-alpine.yml b/.github/workflows/run-tests-alpine.yml index 8222ba3..b0d7b68 100644 --- a/.github/workflows/run-tests-alpine.yml +++ b/.github/workflows/run-tests-alpine.yml @@ -36,9 +36,9 @@ jobs: - name: Install dependencies run: | curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer - composer install + cd php-filelist && composer install - name: Execute tests run: | ls - vendor/bin/pest --ci + cd php-filelist && vendor/bin/pest --ci