Skip to content

Commit 2219514

Browse files
authoredFeb 13, 2025
Create audit.yml
1 parent 9bb9a12 commit 2219514

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
 

‎.github/workflows/audit.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Psalm Static analysis
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
psalm:
7+
name: Psalm
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v2
12+
13+
- name: Psalm
14+
uses: docker://ghcr.io/psalm/psalm-github-actions
15+
with:
16+
security_analysis: true
17+
report_file: results.sarif
18+
- name: Upload Security Analysis results to GitHub
19+
uses: github/codeql-action/upload-sarif@v2
20+
with:
21+
sarif_file: results.sarif

0 commit comments

Comments
 (0)
Failed to load comments.