Print clang-format version in use in CI format check. #7180
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: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: ClangTidy Gen | |
uses: The-OpenROAD-Project/clang-tidy-review@master | |
with: | |
build_dir: './build' | |
cmake_command: cmake . -B build | |
config_file: '.clang-tidy' | |
exclude: "*/codeGenerator/templates/*" | |
split_workflow: true | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: clang-tidy-review | |
path: | | |
clang-tidy-review-output.json | |
clang-tidy-review-metadata.json | |
- uses: The-OpenROAD-Project/clang-tidy-review/upload@master |