summaryrefslogtreecommitdiffstats
path: root/.github/workflows/reviewdog.yml
blob: 729a18397098862844ba2b7599c9a6edad2d87cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: reviewdog
on: [pull_request]
jobs:
  shellcheck:
    name: runner / shellcheck
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - name: shellcheck
        uses: reviewdog/action-shellcheck@v1
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          reporter: github-pr-check
          path: "."
          pattern: "*.sh*"
          exclude: "./.git/*"