Test cpplint & cppcheck with voluntary errors #11
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: cppcheck static analyser | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Ubuntu Latest | |
runs-on: ubuntu-latest | |
steps: | |
- run: sudo apt update && sudo apt install -y cppcheck | |
- name: Checkout ${{ github.ref_name }} | |
uses: actions/checkout@v4 | |
- run: git submodule update --init --recursive | |
- run: mkdir build | |
- run: cmake -G "Unix Makefiles" -DSQLITECPP_BUILD_LIBRARY=OFF -DSQLITE_ENABLE_COLUMN_METADATA=OFF -DSQLITECPP_RUN_CPPCHECK=ON .. | |
working-directory: build | |
- run: cmake --build ./build/ |