diff --git a/.github/workflows/shellcheck-lint.yml b/.github/workflows/shellcheck-lint.yml new file mode 100644 index 0000000..2000e5c --- /dev/null +++ b/.github/workflows/shellcheck-lint.yml @@ -0,0 +1,14 @@ +--- +name: ShellCheck Lint +on: [push, pull_request] # yamllint disable-line rule:truthy + +jobs: + build: + name: Lint ShellCheck + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Lint ShellCheck + uses: ludeeus/action-shellcheck@master