Skip to content

Commit 89afcca

Browse files
committed
introduce reviewdog/action-vint@v1
https://github.com/reviewdog/action-vint
1 parent 83a09a1 commit 89afcca

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

.github/workflows/reviewdog.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
with:
16+
github_token: ${{ secrets.github_token }}
17+
reporter: github-check

.travis.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,8 @@ rvm:
33
- 2.0.0
44
install:
55
- 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
96
before_script:
107
- bundle install
118
- bundle show
129
script:
13-
- >-
14-
vint plugin autoload/EasyMotion.vim autoload/EasyMotion/ | reviewdog -name=vint -efm="%f:%l:%c: %m" -reporter=github-pr-check
1510
- rake ci

0 commit comments

Comments
 (0)