Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
boulderdaze committed May 24, 2024
1 parent d12ba99 commit 1407c7d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/clang_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
- name: Run clang-tidy
run: |
find include -type f \( -name '*.hpp' -or -name '*.h' \) -exec clang-tidy --config-file="./.clang-tidy" --exclude-header-filte="(^<.*$)" --fix-errors {} +
find src -type f \( -name '*.cpp' -or -name '*.c' \) -exec clang-tidy --config-file="./.clang-tidy" --exclude-header-filte="(^<.*$)" --fix-errors {} +
find python -type f \( -name '*.cpp' -or -name '*.c' \) -exec clang-tidy --config-file="./.clang-tidy" --exclude-header-filte="(^<.*$)" --fix-errors {} +
find include -type f \( -name '*.hpp' -or -name '*.h' \) -exec clang-tidy --config-file="./.clang-tidy" --exclude-header-filter="(^<.*$)" --fix-errors {} +
find src -type f \( -name '*.cpp' -or -name '*.c' \) -exec clang-tidy --config-file="./.clang-tidy" --exclude-header-filter="(^<.*$)" --fix-errors {} +
find python -type f \( -name '*.cpp' -or -name '*.c' \) -exec clang-tidy --config-file="./.clang-tidy" --exclude-header-filter="(^<.*$)" --fix-errors {} +
- name: Check for changes
id: check-changes
Expand Down

0 comments on commit 1407c7d

Please sign in to comment.