We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68c74b5 commit da40fc2Copy full SHA for da40fc2
.github/workflows/cpplint.yml
@@ -0,0 +1,16 @@
1
+name: cpplint C++ linter
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ name: Ubuntu Latest
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Checkout ${{ github.ref_name }}
11
+ uses: actions/checkout@v4
12
+ - run: git submodule update --init --recursive
13
+ - run: mkdir build
14
+ - run: cmake -G "Unix Makefiles" -DSQLITECPP_BUILD_LIBRARY=OFF -DSQLITE_ENABLE_COLUMN_METADATA=OFF -DSQLITECPP_RUN_CPPLINT=ON ..
15
+ working-directory: build
16
+ - run: cmake --build ./build/
0 commit comments