From b4ddb1214b041c978d6125b927cf183805c5e3a5 Mon Sep 17 00:00:00 2001 From: Fox Kiester Date: Fri, 31 Jan 2020 20:43:42 -0500 Subject: [PATCH] Add github actions shellcheck workflow --- .github/workflows/shellcheck.yml | 9 +++++++++ 1 file changed, 9 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..bd9295d --- /dev/null +++ b/.github/workflows/shellcheck.yml @@ -0,0 +1,9 @@ +name: lint + +on: [push, pull_request] + +jobs: + shellcheck: + - runs-on: ubuntu-latest + - name: shellcheck + uses: ludeeus/action-shellcheck@0.1.0