Github Action to run cppcheck #1
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: cpplint C++ linter | |
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 |