aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 74940c762f..c87b36e7e4 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -119,6 +119,18 @@ jobs:
name: uncrustify
run: |
${{ env.CACHE_UNCRUSTIFY }} -c ./src/uncrustify.cfg -q --replace --no-backup $(find ./src/nvim -name "*.[ch]")
+
+ - if: "!cancelled()"
+ name: suggester / uncrustify
+ uses: reviewdog/action-suggester@v1
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ tool_name: uncrustify
+ cleanup: false
+
+ - if: "!cancelled()"
+ name: check uncrustify
+ run: |
git diff --color --exit-code
- if: "!cancelled()"