From f12f41579257e29f5b1aa8f39e4ad568bf429ec2 Mon Sep 17 00:00:00 2001 From: supahgreg Date: Thu, 9 Oct 2025 04:15:51 +0000 Subject: [PATCH] Tweaks for PHPStan+PHPUnit in the PHP Code Quality workflow. --- .github/workflows/php-code-quality.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php-code-quality.yml b/.github/workflows/php-code-quality.yml index e3ddbe7db..416ecb406 100644 --- a/.github/workflows/php-code-quality.yml +++ b/.github/workflows/php-code-quality.yml @@ -34,7 +34,8 @@ jobs: with: php-version: '8.4' coverage: none - tools: phpstan + # PHPUnit is installed to support PHPStan checking tests/ + tools: phpstan, phpunit - name: Run PHPStan run: phpstan analyze --no-progress @@ -64,4 +65,4 @@ jobs: tools: phpunit - name: Run PHPUnit - run: phpunit --exclude integration --coverage-filter classes --coverage-filter include + run: phpunit --exclude-group integration --coverage-filter classes --coverage-filter include