From cb7ae1915fd986c1732e9a2044b527cff2bfa66d Mon Sep 17 00:00:00 2001 From: DragonBe Date: Fri, 5 Jul 2024 19:42:04 +0200 Subject: [PATCH] Enabling the infection composer plugin Allowing the infection composer plugin to be used. --- .github/workflows/php.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 9183744..1b2d09a 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -40,7 +40,9 @@ jobs: - name: Install dependencies if: steps.composer-cache.outputs.cache-hit != 'true' - run: composer install --prefer-dist --no-progress --no-suggest + run: | + composer config --no-plugins allow-plugins.infection/extension-installer true + composer install --prefer-dist --no-progress --no-suggest - name: Prepare for Quality run: /bin/sh -c 'mkdir -p ${{ github.workspace }}/build/logs && touch ${{ github.workspace }}/build/logs/checkstyle.xml'