We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b892a02 commit b681e1dCopy full SHA for b681e1d
.github/workflows/check-code-style.yml
@@ -83,14 +83,7 @@ jobs:
83
id: run-clang-format
84
run: |
85
cat diff-to-inspect.txt | /usr/share/clang/clang-format-${{ env.LLVM_VERSION }}/clang-format-diff.py \
86
- -p1 -binary clang-format-${{ env.LLVM_VERSION }} > clang-format.patch
87
- if [ -s clang-format.patch ]; then
88
- echo "clang-format found incorrectly formatted code:"
89
- cat clang-format.patch;
90
- exit 1;
91
- else
92
- rm clang-format.patch # to avoid uploading empty file
93
- fi
+ -p1 -binary clang-format-${{ env.LLVM_VERSION }}
94
95
- name: Run clang-tidy
96
# By some reason, GitHub Actions automatically include "success()"
0 commit comments