mirror of
https://github.com/Ralim/IronOS.git
synced 2025-02-26 07:53:55 +00:00
16 lines
454 B
YAML
16 lines
454 B
YAML
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.
|