⬆️🪝 update pre-commit hooks #107
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: cpp-linter | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
cpp-linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Generate compilation database | |
run: CC=clang-14 CXX=clang++-14 cmake -S . -B build -DBUILD_MISIM_TESTS=ON -DCMAKE_EXPORT_COMPILE_COMMANDS=ON | |
- name: Show compile commands | |
run: cat build/compile_commands.json | |
- name: Run cpp-linter | |
id: linter | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
pipx run cpp-linter \ | |
--version=14 \ | |
--style="" \ | |
--tidy-checks="" \ | |
--thread-comments=true \ | |
--files-changed-only=true \ | |
--ignore="build" \ | |
--database=build \ | |
--extra-arg=-std=c++17 | |
- name: Fail if linter found errors | |
if: steps.linter.outputs.checks-failed > 0 | |
run: echo "Linter found errors" && exit 1 |