Skip to content

Fix clang-tidy configuration and tidy up code #303

Fix clang-tidy configuration and tidy up code

Fix clang-tidy configuration and tidy up code #303

Workflow file for this run

name: clang-format-review
# You can be more specific, but it currently only works on pull requests
on: [pull_request]
jobs:
clang-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Analyze
run: |
clang-format --dry-run --Werror -style=file $(find ./ -name '*.cc' -print)
clang-format --dry-run --Werror -style=file $(find ./ -name '*.hh' -print)