From cb43a52644f48346ae279233c79ca73d1476af31 Mon Sep 17 00:00:00 2001 From: supahgreg Date: Thu, 9 Oct 2025 04:05:39 +0000 Subject: Fix PHPStan+PHPUnit paths in PHP Code Quality workflow. The action installs tools to '/usr/local/bin'. --- .github/workflows/php-code-quality.yml | 4 ++-- 1 file 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 -- cgit v1.2.3-54-g00ecf