From d5f613617e7a7d94073a068f9ab38338a6cf1750 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten-Lebbing Date: Sat, 25 Apr 2020 16:30:14 +0200 Subject: [PATCH] Create shellcheck.yml --- .github/workflows/shellcheck.yml | 17 +++++++++++++++++ 1 file changed, 17 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 00000000..0da492dd --- /dev/null +++ b/.github/workflows/shellcheck.yml @@ -0,0 +1,17 @@ +# This is a workflow to run shellcheck on all scripts +name: Shellcheck Workflow + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the master branch +on: + pull_request: + branches: + - master + - dev + +jobs: + shellcheck: + steps: + - uses: actions/checkout@v1 + - name: Shell Linter + uses: azohra/shell-linter@v0.3.0