We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d421c41 commit 25182bcCopy full SHA for 25182bc
.github/workflows/static-analysis.yml
@@ -58,7 +58,13 @@ jobs:
58
composer-options: "--no-suggest"
59
60
- name: "Run Psalm"
61
- run: "vendor/bin/psalm --show-info=false --stats --output-format=github --threads=$(nproc)"
+ run: "vendor/bin/psalm --show-info=false --stats --output-format=github --threads=$(nproc) --report=psalm.sarif"
62
63
- name: "Run Rector"
64
run: "vendor/bin/rector --ansi --dry-run"
65
+
66
+ - name: "Upload Psalm report"
67
+ uses: actions/upload-artifact@v4
68
+ with:
69
+ name: psalm.sarif
70
+ path: psalm.sarif
0 commit comments