Skip to content

Commit

Permalink
Fix clang format
Browse files Browse the repository at this point in the history
Bench: 2371835
  • Loading branch information
SzilBalazs committed Aug 10, 2023
1 parent a99ff86 commit 5f278e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
- uses: actions/checkout@v3

- name: Install Clang Format
run: sudo apt-get install -y clang-format-10
run: sudo apt-get install -y clang-format

- name: Check code formatting
run: |
find . -not -path './src/external/*' -name '*.cpp' | xargs clang-format-10 -i
find . -not -path './src/external/*' -name '*.h' | xargs clang-format-10 -i
find . -not -path './src/external/*' -name '*.cpp' | xargs clang-format -i
find . -not -path './src/external/*' -name '*.h' | xargs clang-format -i
git diff --exit-code

0 comments on commit 5f278e5

Please sign in to comment.