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 7d06acd commit 2bde121Copy full SHA for 2bde121
.github/workflows/static-analysis.yml
@@ -12,6 +12,8 @@ on:
12
- "v*.*"
13
- "master"
14
- "feature/*"
15
+ tags:
16
+ - "*"
17
18
env:
19
PHP_VERSION: "8.2"
@@ -60,11 +62,10 @@ jobs:
60
62
- name: "Run Psalm"
61
63
run: "vendor/bin/psalm --show-info=false --stats --output-format=github --threads=$(nproc) --report=psalm.sarif"
64
65
+ - name: "Upload sarif report"
66
+ uses: "github/codeql-action/upload-sarif@v3"
67
+ with:
68
+ sarif_file: psalm.sarif
69
+
70
- name: "Run Rector"
71
run: "vendor/bin/rector --ansi --dry-run"
-
- - name: "Upload Psalm report"
- uses: actions/upload-artifact@v4
- with:
- name: psalm.sarif
- path: psalm.sarif
0 commit comments