Skip to content

Add clang tidy linting #25

Add clang tidy linting

Add clang tidy linting #25

Workflow file for this run

name: build
on:
# Run actions fow all branches
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install clang-tidy
run: sudo apt install clang-tidy
- name: Set up CMake
run: cmake -B build -DENABLE_CLANG_TIDY=ON
- name: Build project
run: cmake --build build