We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e27d05 commit c8e44fdCopy full SHA for c8e44fd
.github/workflows/format.yml
@@ -8,7 +8,7 @@ on:
8
9
jobs:
10
style-check:
11
- runs-on: ubuntu-latest
+ runs-on: ubuntu-latest
12
13
steps:
14
- name: Checkout code
@@ -21,6 +21,4 @@ jobs:
21
22
- name: Check clang-format
23
run: |
24
- find . -name "*.cpp" -o -name "*.h" -not -path "./visage_graphics/third_party"
25
- find . -name "*.cpp" -o -name "*.h" -not -path "./visage_graphics/third_party" | \
26
- xargs clang-format --dry-run --Werror --style=file
+ find . \( -name "*.cpp" -o -name "*.h" \) -not -path "./visage_graphics/third_party/*" | xargs clang-format --dry-run --Werror --style=file
0 commit comments