We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd58199 commit eddc6a4Copy full SHA for eddc6a4
.github/workflows/integration-tests.yml
@@ -56,7 +56,7 @@ jobs:
56
- name: Check cpp style
57
if: ${{ matrix.runner != 'macos-latest' }}
58
run: |
59
- sudo apt-get install -y clang-format
+ pip install clang-format
60
find . -regex '.*\.\(cpp\|hpp\|h\|cc\)' -not -path "./python/build/*" -not -path "./include/triton/external/*" -print0 | xargs -0 -n1 clang-format -style=file --dry-run -Werror -i ||
61
(echo '::error title=Style issues:: Please run `find . -regex ".*\.\(cpp\|hpp\|h\|cc\)" -not -path "./python/build/*" -not -path "./include/triton/external/*" -print0 | xargs -0 -n1 clang-format -style=file -i`' ; exit 1)
62
0 commit comments