We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 176b07f commit 6f4e1a7Copy full SHA for 6f4e1a7
.github/workflows/clang-tidy.yaml
@@ -65,7 +65,7 @@ jobs:
65
66
- name: Run clang-tidy
67
run: |
68
- clang-tidy -p build $(jq -r .[].file build/compile_commands.json | grep -vF /generated/) 2>&1 | tee -a clang-tidy.log
+ jq -r .[].file build/compile_commands.json | grep -vE '/(generated|third_party)/' | xargs -P $(nproc) -n 1 clang-tidy --quiet -p build 2>&1 | tee -a clang-tidy.log
69
70
- uses: actions/upload-artifact@v4
71
with:
0 commit comments