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 25e7f1d commit 99a9334Copy full SHA for 99a9334
.github/workflows/check_compliance.yml
@@ -45,11 +45,15 @@ jobs:
45
shell: bash
46
run: |
47
set +e
48
+ INFO_URL="https://github.com/apache/mynewt-core/blob/master/CODING_STANDARDS.md"
49
git diff -U0 origin/master...HEAD > diff.patch
50
clang-format-diff -p1 -style=file < diff.patch > clang-fmt.patch
51
if [ -s clang-fmt.patch ]; then
52
echo "Code formatting issues found:"
53
cat clang-fmt.patch
54
+ echo ""
55
+ echo "For formatting guidelines, see:"
56
+ echo " $INFO_URL"
57
else
58
echo "All good, no formatting issues."
59
fi
0 commit comments