diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-09 04:05:39 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-09 04:05:39 +0000 |
| commit | cb43a52644f48346ae279233c79ca73d1476af31 (patch) | |
| tree | 9b8cace6bf3e34dff1b5f1b93cb2207674d03595 /.github | |
| parent | 5b8303cb74c913836f3f98b5403e1c8a16a197b0 (diff) | |
Fix PHPStan+PHPUnit paths in PHP Code Quality workflow.
The action installs tools to '/usr/local/bin'.
Diffstat (limited to '.github')
| -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 24d1aea60..e3ddbe7db 100644 --- a/.github/workflows/php-code-quality.yml +++ b/.github/workflows/php-code-quality.yml @@ -37,7 +37,7 @@ jobs: tools: phpstan - name: Run PHPStan - run: vendor/bin/phpstan analyze --no-progress + run: phpstan analyze --no-progress phpunit: name: PHPUnit @@ -64,4 +64,4 @@ jobs: tools: phpunit - 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 |