diff options
| author | Greg <supahgreg@users.noreply.github.com> | 2025-10-10 20:46:43 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-10 20:46:43 -0500 |
| commit | 46e0d6e1efa04c8905b4f8d016512125464a5732 (patch) | |
| tree | ec1df81a86310e44b5ef07fb4a9aebcb15186e77 /.github | |
| parent | 92493059da37b3cbd7040f786b1129571e3893cc (diff) | |
| parent | 2d880e6c7dbdcabe87e9fbfc98835cc3b53eadd9 (diff) | |
Merge pull request #22 from tt-rss/bugfix/php-deps
Don't bundle PHP dev dependencies
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/php-code-quality.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/php-code-quality.yml b/.github/workflows/php-code-quality.yml index bbcaf8ee3..5e1f7c2d7 100644 --- a/.github/workflows/php-code-quality.yml +++ b/.github/workflows/php-code-quality.yml @@ -34,10 +34,11 @@ jobs: with: php-version: '8.4' coverage: none - tools: none + # PHPUnit is installed to support PHPStan checking tests/ + tools: phpstan/phpstan:2.1.31, phpunit/phpunit:9.6.29 - name: Run PHPStan - run: vendor/bin/phpstan analyze --no-progress + run: phpstan analyze --no-progress phpunit: name: PHPUnit @@ -61,7 +62,7 @@ jobs: with: php-version: ${{ matrix.php }} coverage: none - tools: none + tools: phpunit/phpunit:9.6.29 - name: Run PHPUnit - run: vendor/bin/phpunit --exclude integration --coverage-filter classes --coverage-filter include + run: phpunit --exclude integration --coverage-filter classes --coverage-filter include |