diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2020-01-30 09:54:11 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2020-01-30 09:54:11 +0900 |
commit | ff18836456caf8e23932f1aafdb81640efa00a1e (patch) | |
tree | 054467baa4334b5220b60722584daf1aa29fb0c8 /.github | |
parent | ba1807c88f7501485a841466e187421a434ee0aa (diff) | |
download | vim-lsp-settings-ff18836456caf8e23932f1aafdb81640efa00a1e.tar.gz vim-lsp-settings-ff18836456caf8e23932f1aafdb81640efa00a1e.tar.bz2 vim-lsp-settings-ff18836456caf8e23932f1aafdb81640efa00a1e.zip |
Add reviewdog
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/reviewdog.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml new file mode 100644 index 0000000..f0752d5 --- /dev/null +++ b/.github/workflows/reviewdog.yml @@ -0,0 +1,22 @@ +name: reviewdog + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + vimlint: + name: runner / vint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: vint + uses: reviewdog/action-vint@v1 + with: + github_token: ${{ secrets.github_token }} + level: error + reporter: github-pr-review |