Skip to content

Fix clang-tidy configuration and tidy up code #103

Fix clang-tidy configuration and tidy up code

Fix clang-tidy configuration and tidy up code #103

Workflow file for this run

name: clang-format-review
# You can be more specific, but it currently only works on pull requests
on: [pull_request]
jobs:
clang-format:
runs-on: ubuntu-24.04
steps:
- name: Install clang-tidy
run: |
sudo apt-get update
sudo apt-get install -y clang-tidy
clang-tidy --version
- name: configure
run: |
mkdir build
cd build
cmake ..
- name: build the library
run: cmake --build build
- name: build examples
run:
cmake --build build --target examples