Skip to content
This repository has been archived by the owner on Nov 2, 2023. It is now read-only.

Commit

Permalink
fix clangformat
Browse files Browse the repository at this point in the history
  • Loading branch information
weilewei committed Aug 25, 2023
1 parent 1f24b71 commit ece7825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/format_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Check C++ format
run: |
find . -name '*.cpp' -o -name '*.h' | xargs clang-format -style=file -i
find . -name '*.cpp' -o -name '*.h' -o -name '*.hpp' -o -name '*.cc' | xargs clang-format -i
git diff --exit-code || (echo "Code was not formatted using clang-format! Please format your code." && exit 1)

- name: Check CMake format
Expand Down

0 comments on commit ece7825

Please sign in to comment.