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 d1291f6 commit 0e5bf17Copy full SHA for 0e5bf17
.github/workflows/phpstan.yml
@@ -18,11 +18,9 @@ jobs:
18
- name: Run PHPStan in the classic way
19
run: |
20
set -euo pipefail
21
- webapp/vendor/bin/phpstan --configuration=webapp/phpstan.dist.neon | tee /tmp/artifacts/phpstan.out
22
- - name: Run PHPStan in the classic way (no tee)
23
- run: |
24
- set -euo pipefail
25
- webapp/vendor/bin/phpstan --configuration=webapp/phpstan.dist.neon
+ webapp/vendor/bin/phpstan \
+ --configuration=webapp/phpstan.dist.neon \
+ | tee /tmp/artifacts/phpstan.out
26
- uses: actions/upload-artifact@v4
27
if: always()
28
with:
0 commit comments