workflows/ci.yml: Suppress unneeded code checks

pull/21/head
Anichitei Ionel-Cristinel 4 years ago committed by GitHub
parent ad95383878
commit 73bdb23284
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -86,4 +86,7 @@ jobs:
- name: Install cppcheck
run: sudo apt install -y cppcheck
- name: Run cppcheck
run: cppcheck --error-exitcode=1 --language=c --enable=all -I inc/ -I inc/bdshemu -I bddisasm/include bddisasm/ bdshemu/
run: cppcheck --error-exitcode=1 --language=c \
--enable=all --suppress=missingIncludeSystem --suppress=unusedStructMember --suppress=unusedFunction \
-I inc/ -I inc/bdshemu -I bddisasm/include bddisasm/ bdshemu/ \
/

Loading…
Cancel
Save