From 93bb87da12ec73f4b6f90c87f3197e19c8f2ea1a Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Wed, 1 Nov 2023 10:13:15 +0100 Subject: [PATCH] chore: allow-plugins in testrun for phpstan --- .github/workflows/phpstan.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index ffe3f7e..ade691c 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -24,6 +24,11 @@ jobs: php-version: '8.0' coverage: none + - name: Allow composer plugins + run: | + composer config --no-plugins allow-plugins.pestphp/pest-plugin true + composer config --no-plugins allow-plugins.phpstan/extension-installer true + - name: Install composer dependencies uses: ramsey/composer-install@v2