diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-09 04:15:51 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-09 04:15:51 +0000 |
| commit | f12f41579257e29f5b1aa8f39e4ad568bf429ec2 (patch) | |
| tree | ef695a019711f413bfff0faff999948f2f998665 /.github | |
| parent | cb43a52644f48346ae279233c79ca73d1476af31 (diff) | |
Tweaks for PHPStan+PHPUnit in the PHP Code Quality workflow.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/php-code-quality.yml | 5 |
1 files 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 |