From b9f578a77b1391b7a65ff90b852a0e906a249d32 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Tue, 8 Dec 2020 14:42:32 +0100 Subject: [PATCH] Also remove phpstan-phpunit from CI builds --- .github/workflows/continuous-integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 4cc5366e..840e4482 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -63,7 +63,7 @@ jobs: - name: "Install latest dependencies" run: | # Remove PHPStan as it requires a newer PHP - composer remove phpstan/phpstan --dev --no-update + composer remove phpstan/phpstan phpstan/phpstan-phpunit --dev --no-update composer update ${{ env.COMPOSER_FLAGS }} - name: "Run tests"