From 249af054819e28489f63a37339672543c234b7db Mon Sep 17 00:00:00 2001 From: Marc <8125196+rdwz@users.noreply.github.com> Date: Mon, 20 Nov 2023 07:31:02 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Add=20ShellCheck=20workflow=20(#?= =?UTF-8?q?77)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Rychart Redwerkz --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..91f6176 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI 🤖 + +on: + push: + branches: + - main + +jobs: + shellcheck: + name: Shellcheck 🐚 + runs-on: ubuntu-latest + steps: + - name: Checkout repository 📥 + uses: actions/checkout@v4 + + - name: Run ShellCheck ✅ + uses: ludeeus/action-shellcheck@2.0.0