From 97482d08140c2a6c0a2e36fa68d15cccc699fd69 Mon Sep 17 00:00:00 2001 From: Bensuperpc Date: Wed, 28 Jul 2021 20:29:40 +0200 Subject: [PATCH] Add shellcheck Add shellcheck Signed-off-by: Bensuperpc --- .github/workflows/ShellCheck.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/ShellCheck.yml diff --git a/.github/workflows/ShellCheck.yml b/.github/workflows/ShellCheck.yml new file mode 100644 index 0000000..cd2486a --- /dev/null +++ b/.github/workflows/ShellCheck.yml @@ -0,0 +1,30 @@ +name: shellcheck + +on: + push: + branches: + - '*' + paths-ignore: + - '**/README.md' + pull_request: + branches: + - '*' + workflow_dispatch: + +jobs: + shellcheck: + name: Shellcheck + runs-on: ubuntu-latest + strategy: + matrix: + shell_type: [bash, ksh] + steps: + - name: "📥 Checkout Code" + uses: actions/checkout@v2 + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@master + with: + ignore: archlinux + severity: warning + env: + SHELLCHECK_OPTS: -s ${{ matrix.shell_type }}