From 09049e064326bb6e95de5a2ea19270f6c87547d9 Mon Sep 17 00:00:00 2001 From: Tobias Schwarz Date: Wed, 29 Jun 2022 16:27:35 +0000 Subject: [PATCH] add ShellCheck Linter --- .github/workflows/shellcheck-lint.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/shellcheck-lint.yml 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