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 2bbd094 commit fb9940eCopy full SHA for fb9940e
.github/workflows/phpstan.yml
@@ -16,7 +16,10 @@ jobs:
16
- name: Show the phpstan version
17
run: webapp/vendor/phpstan/phpstan/phpstan --version
18
- name: Run PHPStan in the classic way
19
- run: webapp/vendor/bin/phpstan --configuration=webapp/phpstan.dist.neon | tee /tmp/artifacts/phpstan.out
+ run: set -euxo pipefail
20
+ webapp/vendor/bin/phpstan \
21
+ --configuration=webapp/phpstan.dist.neon \
22
+ | tee /tmp/artifacts/phpstan.out
23
- uses: actions/upload-artifact@v4
24
if: always()
25
with:
0 commit comments