diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-09 03:55:44 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-09 03:55:44 +0000 |
| commit | 5b8303cb74c913836f3f98b5403e1c8a16a197b0 (patch) | |
| tree | 1800194a8684aaed29a1d458efd6420a25d1bceb /.github/workflows | |
| parent | e41d6361221a30ca9d996cde7591111e626b7e1c (diff) | |
Try letting the 'setup-php' action install PHPStan+PHPUnit in workflow.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/php-code-quality.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/php-code-quality.yml b/.github/workflows/php-code-quality.yml index bbcaf8ee3..24d1aea60 100644 --- a/.github/workflows/php-code-quality.yml +++ b/.github/workflows/php-code-quality.yml @@ -34,7 +34,7 @@ jobs: with: php-version: '8.4' coverage: none - tools: none + tools: phpstan - name: Run PHPStan run: vendor/bin/phpstan analyze --no-progress @@ -61,7 +61,7 @@ jobs: with: php-version: ${{ matrix.php }} coverage: none - tools: none + tools: phpunit - name: Run PHPUnit run: vendor/bin/phpunit --exclude integration --coverage-filter classes --coverage-filter include |