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 2ff6fad commit 176b07fCopy full SHA for 176b07f
.github/workflows/clang-tidy.yaml
@@ -65,12 +65,12 @@ jobs:
65
66
- name: Run clang-tidy
67
run: |
68
- clang-tidy -p build $(jq -r .[].file build/compile_commands.json) 2>&1 | tee -a clang-tidy.log
+ clang-tidy -p build $(jq -r .[].file build/compile_commands.json | grep -vF /generated/) 2>&1 | tee -a clang-tidy.log
69
70
- uses: actions/upload-artifact@v4
71
with:
72
name: Logs (clang-tidy)
73
- path: ./build/clang-tidy.log
+ path: ./clang-tidy.log
74
75
- name: Count warnings
76
0 commit comments