nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit ec0fca4c7d4c540385a656b59ddb6f4954b271bb
parent fff397560869e1a8fc605db026383a0d99e01f1d
Author: Caleb Maclennan <caleb@alerque.com>
Date:   Tue, 31 Dec 2019 07:52:14 +0300

Add CI job that lints VimL and reviews PRs

Diffstat:
A.github/workflows/vint.yml | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/vint.yml b/.github/workflows/vint.yml
@@ -0,0 +1,15 @@
+name: Vint
+on: [push, pull_request]
+jobs:
+  vint:
+    strategy:
+      fail-fast: false
+    runs-on: ubuntu-latest
+    steps:
+    - name: Checkout
+      uses: actions/checkout@master
+    - name: Run vint with reviewdog
+      uses: reviewdog/action-vint@v1.0.1
+      with:
+        github_token: ${{ secrets.github_token }}
+        reporter: github-pr-review