File tree Expand file tree Collapse file tree 2 files changed +25
-5
lines changed Expand file tree Collapse file tree 2 files changed +25
-5
lines changed Original file line number Diff line number Diff line change
1
+ name : reviewdog
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ pull_request :
7
+
8
+ jobs :
9
+ vint :
10
+ name : runner / vint
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - uses : reviewdog/action-vint@v1
15
+ if : github.event_name == 'pull_request'
16
+ with :
17
+ github_token : ${{ secrets.github_token }}
18
+ reporter : github-pr-check
19
+ level : warning
20
+ - uses : reviewdog/action-vint@v1
21
+ if : github.event_name != 'pull_request'
22
+ with :
23
+ github_token : ${{ secrets.github_token }}
24
+ reporter : github-check
25
+ level : warning
Original file line number Diff line number Diff line change 3
3
- 2.0.0
4
4
install :
5
5
- git clone https://github.com/kana/vim-vspec.git
6
- - pip install vim-vint --user
7
- - go env
8
- - go get -u github.com/haya14busa/reviewdog/cmd/reviewdog
9
6
before_script :
10
7
- bundle install
11
8
- bundle show
12
9
script :
13
- - >-
14
- vint plugin autoload/EasyMotion.vim autoload/EasyMotion/ | reviewdog -name=vint -efm="%f:%l:%c: %m" -reporter=github-pr-check
15
10
- rake ci
You can’t perform that action at this time.
0 commit comments