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'