Skip to content

Commit 8475fa8

Browse files
committed
Github Action to run cppcheck
1 parent da40fc2 commit 8475fa8

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/cppcheck.yml

+17
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)