etc: Silent error for missing file when checking installed version. #7824
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 | |
- uses: The-OpenROAD-Project/clang-tidy-review/upload@master |