From 0914c05ed6976b93550225bae2214122e4040434 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Fri, 15 Nov 2019 11:09:30 +0300 Subject: [PATCH] Add Github Actions CI job that lints vimscript --- .github/workflows/vint.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/vint.yml diff --git a/.github/workflows/vint.yml b/.github/workflows/vint.yml new file mode 100644 index 0000000..1f38411 --- /dev/null +++ b/.github/workflows/vint.yml @@ -0,0 +1,16 @@ +name: Vint +on: [push, pull_request] +jobs: + vint: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@master + - name: Set up Python + uses: actions/setup-python@v1 + with: + python-version: 3.7 + - name: Setup dependencies + run: pip install vim-vint + - name: Run Vimscript Linter + run: vint .