From eb32b5bb607279419a9f6da9722c7f458abd568f 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 | 10 ++++++++++ 1 file changed, 10 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..d2e9bb7 --- /dev/null +++ b/.github/workflows/shellcheck-lint.yml @@ -0,0 +1,10 @@ +--- +name: ShellCheck Lint +on: [push, pull_request] # yamllint disable-line rule:truthy +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Lint ShellCheck + uses: ludeeus/action-shellcheck@master