From d7852e387c01127369399be1466ddf74be106d26 Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Wed, 12 Jun 2024 10:33:28 -0400 Subject: [PATCH] Add shellcheck job (#11) --- .github/workflows/lint_shell.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/lint_shell.yml diff --git a/.github/workflows/lint_shell.yml b/.github/workflows/lint_shell.yml new file mode 100644 index 0000000..2189874 --- /dev/null +++ b/.github/workflows/lint_shell.yml @@ -0,0 +1,20 @@ +name: Lint shell code + +on: + push: + branches: + - main + pull_request: + branches: + - main + +permissions: {} + +jobs: + shellcheck: + name: Shellcheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run ShellCheck + uses: ludeeus/action-shellcheck@master