From 7ac54e19a21b8000500f0c0a2d1ea79172ac1996 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jimmy=20B=C3=B6rjesson?= Date: Tue, 2 Jun 2020 11:22:44 +0200 Subject: [PATCH] Set up ShellCheck on GitHub Actions --- .github/workflows/main.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..00e668a --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,17 @@ +name: CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + lint: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: ShellCheck + uses: ludeeus/action-shellcheck@master