diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 440a78b..81557b3 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -23,7 +23,10 @@ jobs: - uses: actions/checkout@v4 - name: Install dependencies - run: sudo apt-get update && sudo apt-get install -y bmap-tools libssl-dev libxml2-dev zlib1g-dev liblzma-dev + run: sudo apt-get update && sudo apt-get install -y bmap-tools libssl-dev libxml2-dev zlib1g-dev liblzma-dev cppcheck + + - name: Cppcheck + run: cppcheck --enable=all --suppress=missingIncludeSystem *.cpp - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.