From 90904b3f420d41cf56c62b6d96234b199399f3e4 Mon Sep 17 00:00:00 2001 From: Dre Date: Sat, 18 Jul 2020 00:49:32 +1000 Subject: workflow: add shellcheck as a linter (#6202) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: ᴜɴᴋɴᴡᴏɴ --- .github/workflows/shell.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/shell.yml (limited to '.github/workflows') diff --git a/.github/workflows/shell.yml b/.github/workflows/shell.yml new file mode 100644 index 00000000..1926472c --- /dev/null +++ b/.github/workflows/shell.yml @@ -0,0 +1,13 @@ +name: Shell +on: + push: + branches: [master] + pull_request: +jobs: + shellcheck: + name: Shellcheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@master -- cgit v1.2.3