Skip to content

Test cpplint & cppcheck with voluntary errors #11

Test cpplint & cppcheck with voluntary errors

Test cpplint & cppcheck with voluntary errors #11

Workflow file for this run

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/