From 364d967b8f4e9894160e8661d0fcf641a2cec1b6 Mon Sep 17 00:00:00 2001 From: Phani Pavan K Date: Tue, 6 Jan 2026 11:28:10 +0000 Subject: [PATCH] Update .gitea/workflows/lint.yaml --- .gitea/workflows/lint.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/lint.yaml b/.gitea/workflows/lint.yaml index dbbd498..b04f278 100644 --- a/.gitea/workflows/lint.yaml +++ b/.gitea/workflows/lint.yaml @@ -6,7 +6,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Install Linter + run: | + wget -qO- "https://github.com/koalaman/shellcheck/releases/download/${scversion?}/shellcheck-${scversion?}.linux.x86_64.tar.xz" | tar -xJv + cp "shellcheck-${scversion}/shellcheck" /usr/local/bin + rm -rf "shellcheck-${scversion}" + shellcheck --version - name: Run Linter - uses: a5k-actions/shellchecker@v0 - with: - ignore-files: "README.md|LICENSE|.NOAI" + run: | + shellcheck penv + shellcheck jconf \ No newline at end of file