We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 433d4f3 commit aa770f8Copy full SHA for aa770f8
1 file changed
.github/workflows/ci.yml
@@ -20,9 +20,23 @@ jobs:
20
steps:
21
- name: Checkout project
22
uses: actions/checkout@v4
23
+
24
- name: CMake - Configure
25
working-directory: tutorial
26
run: cmake -GNinja -Bbuild
27
28
- name: CMake - Build
29
30
run: cmake --build build --verbose
31
32
+ - name: IAR C-STAT Static Analysis
33
+ working-directory: tutorial
34
+ run: |
35
+ ichecks --all --output build/checks.manifest
36
+ icstat --checks build/checks.manifest --db build/cstat.db --sarif_dir build -- iccarm tutorial.c
37
38
+ - name: Upload SARIF
39
+ uses: github/codeql-action/upload-sarif@v3
40
+ with:
41
+ sarif_file: build/tutorial.c.sarif
42
+ category: cstat-analysis
0 commit comments