Mutations for scaling banks and multiports and adding connections #140
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: check clang-tidy | |
# You can be more specific, but it currently only works on pull requests | |
on: [pull_request] | |
jobs: | |
clang-tidy: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- 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 |