Skip to content

Commit

Permalink
ci: Run clang-tidy with multiple threads
Browse files Browse the repository at this point in the history
This is achieved by using the run-clang-tidy wrapper script.
  • Loading branch information
taminob committed Mar 17, 2024
1 parent 0c2ac69 commit 1808ff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cpp-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ jobs:
run: find . \( \( -path './build' -o -path '*/.*' \) -prune \) -o
\( -type f -a \( -iname '*.cpp' -o -iname '*.h' \) \)
-exec echo "Linting '{}'..." \;
-exec clang-tidy -p build --warnings-as-errors='*' {} +
-exec run-clang-tidy -p build -warnings-as-errors='*' {} +
shell: alpine.sh {0}

0 comments on commit 1808ff7

Please sign in to comment.