We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4caab2 commit be6ffa6Copy full SHA for be6ffa6
2 files changed
.github/workflows/ci.yml
@@ -134,8 +134,9 @@ jobs:
134
- name: Run PHPStan
135
if: env.COVERAGE_LANE == 'true'
136
run: |
137
+ set -o pipefail
138
mkdir -p static-analysis
- ./vendor/bin/phpstan analyse --configuration phpstan.neon.dist --memory-limit=1G --no-progress --error-format=raw > static-analysis/phpstan.txt
139
+ ./vendor/bin/phpstan analyse --configuration phpstan.neon.dist --memory-limit=1G --no-progress --error-format=raw 2>&1 | tee static-analysis/phpstan.txt
140
141
- name: Run tests
142
0 commit comments