aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-11-17 23:02:45 +0000
committerGitHub <noreply@github.com>2021-11-17 23:02:45 +0000
commitcd50fdf7ee6cdb1a5025f4e3e9540c0fd00499a7 (patch)
tree47e7c6405b52374a79ae328ed3accbaa1e8c925b /.github
parentb5d24f9efb316351c73763eeac5fcc11b98e0ba1 (diff)
downloadqmk_firmware-cd50fdf7ee6cdb1a5025f4e3e9540c0fd00499a7.tar.gz
qmk_firmware-cd50fdf7ee6cdb1a5025f4e3e9540c0fd00499a7.zip
Add diff logic to python format subcommand (#15156)
* Add diff logic to python format subcommand * Update test * Add in filter per format-c * fix tests * Update new workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/format.yaml2
-rw-r--r--.github/workflows/format_push.yaml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml
index 9e165e0e8..645e0ce10 100644
--- a/.github/workflows/format.yaml
+++ b/.github/workflows/format.yaml
@@ -37,7 +37,7 @@ jobs:
37 shell: 'bash {0}' 37 shell: 'bash {0}'
38 run: | 38 run: |
39 qmk format-c --core-only $(< ~/files.txt) 39 qmk format-c --core-only $(< ~/files.txt)
40 qmk format-python 40 qmk format-python $(< ~/files.txt)
41 qmk format-text $(< ~/files.txt) 41 qmk format-text $(< ~/files.txt)
42 git diff 42 git diff
43 43
diff --git a/.github/workflows/format_push.yaml b/.github/workflows/format_push.yaml
index 8b579bf86..b79130f17 100644
--- a/.github/workflows/format_push.yaml
+++ b/.github/workflows/format_push.yaml
@@ -25,7 +25,7 @@ jobs:
25 shell: 'bash {0}' 25 shell: 'bash {0}'
26 run: | 26 run: |
27 qmk format-c -a 27 qmk format-c -a
28 qmk format-python 28 qmk format-python -a
29 qmk format-text -a 29 qmk format-text -a
30 git diff 30 git diff
31 31