Skip to content

Commit 5f99bf0

Browse files
authored
Add missing cert.py addon for cppcheck SA (#32)
1 parent f625d2c commit 5f99bf0

File tree

2 files changed

+476
-1
lines changed

2 files changed

+476
-1
lines changed

.github/workflows/static-analisys.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: General checks
2525
run: cppcheck --enable=all --inline-suppr --inconclusive --std=c99 ./ -I ./include --output-file=./sa_results/general.txt --suppress=missingIncludeSystem --suppress=unmatchedSuppression:{}
2626
- name: CERT checks
27-
run: cppcheck --addon=cert.py --inline-suppr --inconclusive --std=c99 ./ -I ./include --output-file=./sa_results/cert.txt --suppress=missingIncludeSystem --suppress=unmatchedSuppression:{}
27+
run: cppcheck --addon=./check/cert.py --inline-suppr --inconclusive --std=c99 ./ -I ./include --output-file=./sa_results/cert.txt --suppress=missingIncludeSystem --suppress=unmatchedSuppression:{}
2828
- name: MISRA checks
2929
run: cppcheck --addon=./check/misra.json --inline-suppr --inconclusive --std=c99 ./ -I ./include --output-file=./sa_results/misra.txt --suppress=missingIncludeSystem --suppress=unmatchedSuppression:{}
3030
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)