Skip to content

Commit 7ce9d4e

Browse files
committed
ci: Add workflow running vimscript linter
1 parent 63554a3 commit 7ce9d4e

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/workflows/vint.yml

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

README.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Indent Guides
22

3+
[![Vint](https://github.com/preservim/vim-indent-guides/workflows/Vint/badge.svg)](https://github.com/preservim/vim-indent-guides/actions?workflow=Vint)
4+
35
Indent Guides is a plugin for visually displaying indent levels in Vim.
46

57
<img src="http://i.imgur.com/ONgoj.png" width="448" height="448" alt="" />

0 commit comments

Comments
 (0)