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 6f425c8 commit e73d22dCopy full SHA for e73d22d
.github/workflows/format.yaml
@@ -36,11 +36,10 @@ jobs:
36
- name: Run qmk formatters
37
shell: 'bash {0}'
38
run: |
39
- set +e
40
cat ~/files_added.txt ~/files_modified.txt > ~/files_changed.txt
41
- qmk format-c --core-only $(< ~/files_changed.txt)
42
- qmk format-python $(< ~/files_changed.txt)
43
- qmk format-text $(< ~/files_changed.txt)
+ qmk format-c --core-only $(< ~/files_changed.txt) || true
+ qmk format-python $(< ~/files_changed.txt) || true
+ qmk format-text $(< ~/files_changed.txt) || true
44
45
- name: Fail when formatting required
46
0 commit comments