Skip to content

Commit 176b07f

Browse files
committed
fix: paths
1 parent 2ff6fad commit 176b07f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/clang-tidy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ jobs:
6565
6666
- name: Run clang-tidy
6767
run: |
68-
clang-tidy -p build $(jq -r .[].file build/compile_commands.json) 2>&1 | tee -a clang-tidy.log
68+
clang-tidy -p build $(jq -r .[].file build/compile_commands.json | grep -vF /generated/) 2>&1 | tee -a clang-tidy.log
6969
7070
- uses: actions/upload-artifact@v4
7171
with:
7272
name: Logs (clang-tidy)
73-
path: ./build/clang-tidy.log
73+
path: ./clang-tidy.log
7474

7575
- name: Count warnings
7676
run: |

0 commit comments

Comments
 (0)