diff options
Diffstat (limited to '.github/workflows/shell.yml')
-rw-r--r-- | .github/workflows/shell.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/shell.yml b/.github/workflows/shell.yml new file mode 100644 index 00000000..1926472c --- /dev/null +++ b/.github/workflows/shell.yml @@ -0,0 +1,13 @@ +name: Shell +on: + push: + branches: [master] + pull_request: +jobs: + shellcheck: + name: Shellcheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@master |