Skip to content

Turn off cpplint and cppcheck options but test them in CI #2

Turn off cpplint and cppcheck options but test them in CI

Turn off cpplint and cppcheck options but test them in CI #2

Workflow file for this run

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