Skip to content

🎨 Improved usability of the on-the-fly SiDB gate library #3417

🎨 Improved usability of the on-the-fly SiDB gate library

🎨 Improved usability of the on-the-fly SiDB gate library #3417

name: Clang-Tidy Review
on:
pull_request:
paths:
- "**/*.hpp"
- "**/*.cpp"
- "libs/**"
- ".github/workflows/clang-tidy-review.yml"
- "!bindings/mnt/pyfiction/include/pyfiction/pybind11_mkdoc_docstrings.hpp"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
clangtidy:
runs-on: ubuntu-latest
name: 🚨 Clang-Tidy
steps:
- name: Clone Repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Review code with Clang-Tidy
uses: ZedThree/clang-tidy-review@v0.20.1
id: review
with:
cmake_command: >
cmake . -B build
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON
-DFICTION_CLI=ON
-DFICTION_TEST=ON
-DFICTION_BENCHMARK=OFF
-DFICTION_EXPERIMENTS=ON
-DMOCKTURTLE_EXAMPLES=OFF
build_dir: build
apt_packages: "libreadline-dev,libtbb-dev"
config_file: ".clang-tidy"
exclude: "libs/*,docs/*,benchmarks/*,bib/*,*/pyfiction/pybind11_mkdoc_docstrings.hpp,*/pyfiction/documentation.hpp"
split_workflow: true
- name: Make sure that the review file exists
id: check-review-output
uses: andstor/file-existence-action@v3.0.0
with:
files: "clang-tidy-review-output.json"
ignore_case: true
- name: Upload review artifact
uses: actions/upload-artifact@v4
with:
name: clang-tidy-review
path: |
clang-tidy-review-output.json
clang-tidy-review-metadata.json