From 9571532762e6260f7c81c1eb8bbd7dd61e011a5e Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Wed, 23 Oct 2019 12:04:42 +0300 Subject: [PATCH] Configure CI job that runs vimscript linter --- .github/workflows/vint.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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..73127b9 --- /dev/null +++ b/.github/workflows/vint.yml @@ -0,0 +1,22 @@ +name: Vint + +on: [push, pull_request] + +jobs: + vint: + strategy: + fail-fast: false + + 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 .