diff options
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 |