We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da40fc2 commit 8475fa8Copy full SHA for 8475fa8
.github/workflows/cppcheck.yml
@@ -0,0 +1,17 @@
1
+name: cppcheck static analyser
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ name: Ubuntu Latest
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - run: sudo apt update && sudo apt install -y cppcheck
11
+ - name: Checkout ${{ github.ref_name }}
12
+ uses: actions/checkout@v4
13
+ - run: git submodule update --init --recursive
14
+ - run: mkdir build
15
+ - run: cmake -G "Unix Makefiles" -DSQLITECPP_BUILD_LIBRARY=OFF -DSQLITE_ENABLE_COLUMN_METADATA=OFF -DSQLITECPP_RUN_CPPCHECK=ON ..
16
+ working-directory: build
17
+ - run: cmake --build ./build/
0 commit comments