Browse Source

Merge remote-tracking branch 'origin/master' into develop

pull/15260/head
QMK Bot 2 years ago
parent
commit
12ece58f53
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      .github/workflows/format.yaml

+ 3
- 2
.github/workflows/format.yaml View File

@ -39,11 +39,12 @@ jobs:
qmk format-c --core-only $(< ~/files.txt)
qmk format-python $(< ~/files.txt)
qmk format-text $(< ~/files.txt)
git diff
- name: Fail when formatting required
run: |
git diff
for file in $(git diff --name-only); do
echo "::error file=${file}::::File Requires Formatting"
echo "File '${file}' Requires Formatting"
echo "::error file=${file}::Requires Formatting"
done
test -z "$(git diff --name-only)"

Loading…
Cancel
Save