From dcd76d2408c3aff9c2c4b2bcbfeb081f825a84b1 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Wed, 9 Oct 2024 10:31:06 -0700 Subject: [PATCH] workflows: run shellcheck on tests --- .github/workflows/e2e.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index bc1ab21f3..48879a86b 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -19,7 +19,7 @@ jobs: fetch-depth: 0 - name: Install dependencies run: | - sudo apt-get install meson scdoc python3-hatchling python3-build python3-installer python3-filelock + sudo apt-get install meson scdoc python3-hatchling python3-build python3-installer python3-filelock shellcheck - name: Initialize submodules run: | git submodule update --init --recursive @@ -27,6 +27,9 @@ jobs: run: | ./configure.sh --user-install make install + - name: Run shellcheck + run: | + shellcheck tests/*.sh - name: Run tests run: | bash tests/test_update.sh