diff options
author | Ben V. Brown <[email protected]> | 2022-01-03 20:58:30 +1100 |
---|---|---|
committer | Ben V. Brown <[email protected]> | 2022-01-03 20:58:30 +1100 |
commit | ed029dbd89a9029ca88178a52b828bf48cc8125d (patch) | |
tree | 5ad68b77ab6aee349954c38451ff23bad3277fc1 /.github/workflows | |
parent | 72e0c17ebf24ee448ccb82ae72018b823910e719 (diff) | |
download | IronOS-ed029dbd89a9029ca88178a52b828bf48cc8125d.tar.gz IronOS-ed029dbd89a9029ca88178a52b828bf48cc8125d.zip |
Create shellcheck.yml
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/shellcheck.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml new file mode 100644 index 00000000..81c6118a --- /dev/null +++ b/.github/workflows/shellcheck.yml @@ -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. |