Use portable PRIu64 macro instead of %lu for uint64_t #23
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 | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'release/*' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
clang_tidy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Setup python | |
uses: actions/setup-python@v4 | |
- name: Run clang-tidy | |
run: | | |
mkdir build | |
cmake -B build | |
make -C build clang-tidy |