Skip to content

Commit

Permalink
removing headers from clang-tidy 16
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-tierny committed Aug 2, 2023
1 parent b0c21ed commit 5cf0db0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,15 +147,15 @@ jobs:
run: |
git ls-files \
| grep core \
| grep -E "\.cpp$|\.cxx$|\.h$|\.hpp$" \
| grep -E "\.cpp$|\.cxx$" \
| xargs -n1 -P$(nproc) clang-tidy -p build --warnings-as-errors="*" 2> /dev/null
- name: Use Clang static analyzer
if: matrix.config.sa
run: |
git ls-files \
| grep core \
| grep -E "\.cpp$|\.cxx$|\.h$|\.hpp$" \
| grep -E "\.cpp$|\.cxx$" \
| xargs -n1 -P$(nproc) clang-tidy -p build --checks="-*,clang-analyzer-*" --warnings-as-errors="*" 2> /dev/null
- name: Check Doxygen documentation warnings
Expand Down

0 comments on commit 5cf0db0

Please sign in to comment.