From 7b52c2a3918e6a9d2989ac2d5ffb6e0fbd629761 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Fri, 18 Oct 2024 01:38:15 +0200 Subject: [PATCH] Add ShellCheck workflow --- .github/workflows/action_shell-scripts.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/action_shell-scripts.yml diff --git a/.github/workflows/action_shell-scripts.yml b/.github/workflows/action_shell-scripts.yml new file mode 100644 index 00000000..fbdfddac --- /dev/null +++ b/.github/workflows/action_shell-scripts.yml @@ -0,0 +1,12 @@ +name: Shell Scripts + +on: + pull_request: null + +jobs: + shellcheck: + name: ShellCheck + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: ludeeus/action-shellcheck@master