Skip to content

Update README.md (#207) #158

Update README.md (#207)

Update README.md (#207) #158

Workflow file for this run

# Sam note: this action is from: https://github.com/HorstBaerbel/action-clang-tidy
name: clang-tidy
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
checkout-and-check-formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run clang-tidy
uses: HorstBaerbel/action-clang-tidy@1.2
# These are optional (defaults displayed)
with:
scandir: '.'
builddir: 'build'
excludedirs: ''
extensions: 'c,h,C,H,cpp,hpp,cc,hh,c++,h++,cxx,hxx'
cmakeoptions: '-DBUILD_CLI_UTILITIES=OFF -DBUILD_UNIT_TESTS=OFF -DUSE_ZSTD=OFF'