From 0d5cc610643ad0e6a36e940f4c9e5b5f00c9fb31 Mon Sep 17 00:00:00 2001 From: Ben McClelland Date: Mon, 10 Jun 2024 08:12:36 -0700 Subject: [PATCH] chore: add shellcheck PR check --- .github/workflows/shellcheck.yml | 16 ++++++++++++++++ 1 file changed, 16 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..01ca427d --- /dev/null +++ b/.github/workflows/shellcheck.yml @@ -0,0 +1,16 @@ +name: shellcheck +on: pull_request +jobs: + + build: + name: Run shellcheck + runs-on: ubuntu-latest + steps: + + - name: Check out code + uses: actions/checkout@v4 + + - name: Run checks + run: | + shellcheck --version + shellcheck -e SC1091 tests/*.sh tests/*/*.sh