Skip to content

Commit

Permalink
Merge pull request #52 from takuan517/add-action-shellcheck
Browse files Browse the repository at this point in the history
Add action schellcheck
  • Loading branch information
mgrachev committed Oct 14, 2021
2 parents 39393ee + b6ed36e commit 7d8626b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/shellcheck.yml
@@ -0,0 +1,18 @@
name: shellcheck
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
path: "."
pattern: "*.sh"
exclude: "./.git/*"

0 comments on commit 7d8626b

Please sign in to comment.