Prevent access violation for missing DyKnow with dir
#121
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: C++ Static Analysis | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Run cppcheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Install cppcheck | |
run: sudo apt-get install cppcheck -y | |
- name: Run cppcheck | |
run: | | |
cppcheck src --enable=all --inline-suppr --library=windows.cfg --check-level=exhaustive --suppressions-list=CPPCHECK.cfg --error-exitcode=1 |