From c62363dd625ae9d17900dd1b6d02e43642185e1a Mon Sep 17 00:00:00 2001 From: Stefan Zweifel Date: Thu, 12 Dec 2019 21:05:01 +0100 Subject: [PATCH] Add Workflow to run Shellcheck --- .github/workflows/shellcheck.yml | 15 +++++++++++++++ 1 file changed, 15 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..3b8adaf --- /dev/null +++ b/.github/workflows/shellcheck.yml @@ -0,0 +1,15 @@ +name: Shellcheck + +on: push + +jobs: + shellcheck: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + + - name: Install shellcheck + run: apt-get install shellcheck + + - name: Run shellcheck + run: shellcheck *.sh