From ae262352c6d0d1bdc7f2fbe20194022ba131d5e3 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Sun, 12 Apr 2026 12:33:02 +0100 Subject: [PATCH] Add shellcheck to CI lint job --- .github/workflows/test_and_deploy.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index feebdff6..9f989935 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -76,6 +76,10 @@ jobs: run: mix credo --strict - name: 👮 Run Sobelow run: mix sobelow + - name: 🐚 Run Shellcheck + run: | + fd . 'scripts/' --exclude '*.hurl' -t file --exec shellcheck --color + fd . '.claude/hooks' -t file --exec shellcheck --color test: runs-on: ubuntu-latest