aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/reviewdog.yml
diff options
context:
space:
mode:
authorMitsuo Heijo <mitsuo.heijo@gmail.com>2020-01-31 00:01:03 +0900
committerMitsuo Heijo <mitsuo.heijo@gmail.com>2020-01-31 00:01:03 +0900
commit07d94f231c43b12469629585e868c379c15924f9 (patch)
tree8d2e2c8547f847e91f902744f006e2b9b70ec704 /.github/workflows/reviewdog.yml
parentead5f7718dca26776ab03fccad15df31544ad74a (diff)
downloadvim-lsp-settings-07d94f231c43b12469629585e868c379c15924f9.tar.gz
vim-lsp-settings-07d94f231c43b12469629585e868c379c15924f9.tar.bz2
vim-lsp-settings-07d94f231c43b12469629585e868c379c15924f9.zip
upgrade actions/checkout v1 -> v2
Diffstat (limited to '.github/workflows/reviewdog.yml')
-rw-r--r--.github/workflows/reviewdog.yml15
1 files changed, 14 insertions, 1 deletions
diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml
index f0752d5..454a152 100644
--- a/.github/workflows/reviewdog.yml
+++ b/.github/workflows/reviewdog.yml
@@ -13,10 +13,23 @@ jobs:
name: runner / vint
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v2
- name: vint
uses: reviewdog/action-vint@v1
with:
github_token: ${{ secrets.github_token }}
level: error
reporter: github-pr-review
+ shellcheck:
+ name: runner / shellcheck
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: shellcheck
+ uses: reviewdog/action-shellcheck@v1
+ with:
+ github_token: ${{ secrets.github_token }}
+ reporter: github-pr-review
+ path: "."
+ pattern: "*.sh"
+ exclude: "./.git/*"