🐛 Fixed several bugs resulting from the new cell_type::LOGIC
in the SiDB technology
#2904
Workflow file for this run
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: Clang-Tidy Review | |
on: | |
pull_request: | |
paths: | |
- '**/*.hpp' | |
- '**/*.cpp' | |
- 'libs/**' | |
- '.github/workflows/clang-tidy-review.yml' | |
- '!bindings/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.19.0 | |
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 |