From 3e6fa148d39831d692c7a49033d3821bf9403e57 Mon Sep 17 00:00:00 2001 From: Pavel Tisnovsky Date: Fri, 31 Jan 2025 14:40:05 +0100 Subject: [PATCH] Shellcheck on CI --- .github/workflows/shellcheck.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/shellcheck.yaml diff --git a/.github/workflows/shellcheck.yaml b/.github/workflows/shellcheck.yaml new file mode 100644 index 0000000..fa4b7cc --- /dev/null +++ b/.github/workflows/shellcheck.yaml @@ -0,0 +1,13 @@ +name: Shell check + +on: + - push + - pull_request + +jobs: + shellcheck: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v4 + - name: Shell check + run: make shellcheck