aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/reviewdog.yml
diff options
context:
space:
mode:
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/*"