Create shellcheck.yml
This commit is contained in:
15
.github/workflows/shellcheck.yml
vendored
Normal file
15
.github/workflows/shellcheck.yml
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
name: Shell Check
|
||||
on: [push, 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.
|
||||
Reference in New Issue
Block a user