From b8181b5f7d9d2497366cb888b71ca245cd5ea829 Mon Sep 17 00:00:00 2001 From: Steve Grunwell <233836+stevegrunwell@users.noreply.github.com> Date: Mon, 11 Dec 2023 19:55:26 -0500 Subject: [PATCH] Remove PHPStan as a dev dependency when running PHPUnit --- .github/workflows/unit-tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index ee96b6c..e6f3aea 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -19,6 +19,9 @@ jobs: php-version: ${{ matrix.php-version }} coverage: none + - name: Remove PHPStan as a dependency + run: composer remove --dev phpstan/phpstan + - name: Install Composer dependencies uses: ramsey/composer-install@v2