aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/shellcheck.yml
blob: 8def392d0e0f90450186433e42e683029e7d7966 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
name: Shell Check
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-review # Change reporter.
          exclude: "./.git/*" # Optional.
          check_all_files_with_shebangs: "false" # Optional.