From a5145e15dd2f932b5c62d4c521395af5f6876e21 Mon Sep 17 00:00:00 2001 From: barrust Date: Sat, 21 Dec 2024 11:19:11 -0500 Subject: [PATCH] suppress missingIncludeSystem errors until cppcheck v2.16 or greater --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7c7e6c4..a8def1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: - name: Install cppcheck run: sudo apt install cppcheck - name: Code Quality (cppcheck) - run: cppcheck --error-exitcode=1 --inline-suppr --enable=warning,performance,information,style --check-level=exhaustive --template='{file}:{line},{severity},{id},{message}' ./src/ + run: cppcheck --error-exitcode=1 --inline-suppr --enable=warning,performance,information,style --suppress=missingIncludeSystem --check-level=exhaustive --template='{file}:{line},{severity},{id},{message}' ./src/ macos: runs-on: ${{ matrix.os }}