Skip to content

Commit

Permalink
Configure CI job that runs vimscript linter
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Oct 24, 2019
1 parent db1855b commit 9571532
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .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 .

0 comments on commit 9571532

Please sign in to comment.