File tree Expand file tree Collapse file tree 2 files changed +23
-10
lines changed Expand file tree Collapse file tree 2 files changed +23
-10
lines changed Original file line number Diff line number Diff line change
1
+ name : Reviewdog
2
+ on : [pull_request]
3
+ jobs :
4
+ vint :
5
+ name : vint
6
+ runs-on : ubuntu-latest
7
+ steps :
8
+ - uses : actions/checkout@v2
9
+ - name : vint
10
+ uses : reviewdog/action-vint@v1
11
+ with :
12
+ github_token : ${{ secrets.github_token }}
13
+ reporter : github-pr-review
Original file line number Diff line number Diff line change 1
1
name : Vint
2
- on : [push, pull_request ]
2
+ on : [push]
3
3
jobs :
4
4
vint :
5
- strategy :
6
- fail-fast : false
5
+ name : vint
7
6
runs-on : ubuntu-latest
8
7
steps :
9
- - name : Checkout
10
- uses : actions/checkout@master
11
- - name : Run vint with reviewdog
12
-
13
- with :
14
- github_token : ${{ secrets.github_token }}
15
- reporter : github-pr-review
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 .
You can’t perform that action at this time.
0 commit comments