From 22ecea01287d2422e32a2d503bc88efc183a8590 Mon Sep 17 00:00:00 2001 From: Samantaz Fox Date: Fri, 29 Oct 2021 18:09:45 +0200 Subject: [PATCH] Add basic github action that runs shellcheck --- .github/workflows/shellcheck.yml | 14 ++++++++++++++ 1 file changed, 14 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..6c3256a --- /dev/null +++ b/.github/workflows/shellcheck.yml @@ -0,0 +1,14 @@ +name: shellcheck-validation + +on: push + +jobs: + shellcheck: + runs-on: ubuntu-latest + + steps: + - name: Clone repository + uses: actions/checkout@v2 + + - name: Execute ShellCheck + run: shellcheck scripts/*.sh