We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b62ef2 commit e7c3a6aCopy full SHA for e7c3a6a
.github/workflows/phpstan.yml
@@ -15,13 +15,11 @@ jobs:
15
run: .github/jobs/composer_setup.sh
16
- name: Show the phpstan version
17
run: webapp/vendor/phpstan/phpstan/phpstan --version
18
- - uses: php-actions/[email protected]
19
- with:
20
- configuration: webapp/phpstan.dist.neon
21
- path: webapp/src webapp/tests
22
- php_extensions: gd intl mysqli pcntl zip
23
- autoload_file: webapp/vendor/autoload.php
24
- version: composer
+ - name: Run PHPStan in the classic way
+ run: set -euxo pipefail
+ webapp/vendor/bin/phpstan \
+ --configuration=webapp/phpstan.dist.neon \
+ | tee /tmp/artifacts/phpstan.out
25
- uses: actions/upload-artifact@v4
26
if: always()
27
with:
0 commit comments