Skip to content

Commit 836e9a9

Browse files
committed
Add GitHub Actions CI job that runs vimscript linter
1 parent 97bc048 commit 836e9a9

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/vint.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Vint
2+
on: [push, pull_request]
3+
jobs:
4+
vint:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout
8+
uses: actions/checkout@master
9+
- name: Set up Python
10+
uses: actions/setup-python@v1
11+
with:
12+
python-version: 3.7
13+
- name: Setup dependencies
14+
run: pip install vim-vint
15+
- name: Run Vimscript Linter
16+
run: vint .

0 commit comments

Comments
 (0)