From 90d96bd575a61dde4cf1e9101a04824f317df8f9 Mon Sep 17 00:00:00 2001 From: Leonard Carcaramo Date: Fri, 23 Feb 2024 13:32:39 -0500 Subject: [PATCH] Debug cppcheck Signed-off-by: Leonard Carcaramo --- .github/workflows/cppcheck.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/cppcheck.yml b/.github/workflows/cppcheck.yml index 0118bb1..6c82238 100644 --- a/.github/workflows/cppcheck.yml +++ b/.github/workflows/cppcheck.yml @@ -4,17 +4,16 @@ jobs: build: strategy: fail-fast: false - matrix: - python-version: ["3.10", "3.11"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Install cppcheck run: sudo apt-get install -y cppcheck - name: Run cppcheck + run: cppcheck --help + run: cppcheck --version run: | - cppcheck --check-level=exhaustive \ - --error-exitcode=1 \ + cppcheck --error-exitcode=1 \ --std=c99 \ --enable=all \ --inconclusive \ @@ -22,4 +21,4 @@ jobs: --force \ --suppress=missingIncludeSystem \ --suppress=unusedFunction \ - ./pyracf/common/irrsmo00.c \ No newline at end of file + ./pyracf/common/irrsmo00.c