From fd4a5fcf5041c93fb2f3ceb7977e0ad8b7c72e4e Mon Sep 17 00:00:00 2001 From: Laurent Laville Date: Tue, 9 Jan 2024 09:38:40 +0000 Subject: [PATCH] fixed CI workflow to accept additional option on phpunit run --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 571b068..b4e3570 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -74,7 +74,7 @@ jobs: - name: Run tests if: github.ref_type == 'branch' shell: bash - run: composer run test --exclude-group tags + run: vendor/bin/phpunit --exclude-group tags - name: Run release tests if: github.ref_type == 'tag'