✨ Gate-level layout file reader and writer #986
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' | |
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/[email protected] | |
id: review | |
with: | |
cmake_command: > | |
cmake . -B build | |
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON | |
-DFICTION_CLI=ON | |
-DFICTION_TEST=ON | |
-DFICTION_EXPERIMENTS=ON | |
-DMOCKTURTLE_EXAMPLES=OFF | |
build_dir: build | |
config_file: '.clang-tidy' | |
exclude: 'libs/*, docs/*, benchmarks/*, bib/*' | |
split_workflow: true | |
- name: Make sure that the review file exists | |
id: check-review-output | |
uses: andstor/[email protected] | |
with: | |
files: 'clang-tidy-review-output.json' | |
ignore_case: true | |
- name: Upload review artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: clang-tidy-review | |
path: | | |
clang-tidy-review-output.json | |
clang-tidy-review-metadata.json |