Skip to content

Commit

Permalink
Debug cppcheck
Browse files Browse the repository at this point in the history
Signed-off-by: Leonard Carcaramo <lcarcaramo@ibm.com>
  • Loading branch information
lcarcaramo committed Feb 23, 2024
1 parent 596d181 commit 90d96bd
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/cppcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,21 @@ 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 \
--language=c \
--force \
--suppress=missingIncludeSystem \
--suppress=unusedFunction \
./pyracf/common/irrsmo00.c
./pyracf/common/irrsmo00.c

0 comments on commit 90d96bd

Please sign in to comment.