Upgrade version from 1.12.2 to 1.12.3 #26
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: | |
- '**.cpp' | |
- '**.hpp' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
review: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Run clang-tidy | |
uses: ZedThree/[email protected] | |
id: review | |
with: | |
build_dir: build | |
config_file: ".clang-tidy" | |
# Googletest triggers a _lot_ of clang-tidy warnings, so ignore all | |
# the unit tests until they're fixed or ignored upstream | |
exclude: "tests/unit/*cxx" | |
cmake_command: | | |
cmake . -B build -Dbrynet_BUILD_TESTS=ON \ | |
-Dbrynet_BUILD_EXAMPLES=ON \ | |
-DCMAKE_EXPORT_COMPILE_COMMANDS=On |