Skip to content

Commit d1291f6

Browse files
committed
We need syntaxcheck for GHA
1 parent 77972ae commit d1291f6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/phpstan.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ jobs:
1616
- name: Show the phpstan version
1717
run: webapp/vendor/phpstan/phpstan/phpstan --version
1818
- name: Run PHPStan in the classic way
19-
run: set -euo pipefail
19+
run: |
20+
set -euo pipefail
2021
webapp/vendor/bin/phpstan --configuration=webapp/phpstan.dist.neon | tee /tmp/artifacts/phpstan.out
2122
- name: Run PHPStan in the classic way (no tee)
22-
run: set -euo pipefail
23+
run: |
24+
set -euo pipefail
2325
webapp/vendor/bin/phpstan --configuration=webapp/phpstan.dist.neon
2426
- uses: actions/upload-artifact@v4
2527
if: always()

0 commit comments

Comments
 (0)