From ee5118aea6e8bf2661ed0f651ac291cf31c97db9 Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Fri, 13 Mar 2026 11:16:27 +0100 Subject: [PATCH] Delete .github/workflows/validate-shellcheck.yml --- .github/workflows/validate-shellcheck.yml | 37 ----------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/validate-shellcheck.yml diff --git a/.github/workflows/validate-shellcheck.yml b/.github/workflows/validate-shellcheck.yml deleted file mode 100644 index 7a69341..0000000 --- a/.github/workflows/validate-shellcheck.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: Validate Shell Scripts -permissions: - contents: read - -on: - pull_request: - paths: - - "build/**/*.sh" -jobs: - validate: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v5 - - - name: Install ShellCheck - shell: bash - run: | - sudo apt-get update - sudo apt-get install -y shellcheck - - - name: Validate Shell Scripts - shell: bash - run: | - echo "Running shellcheck on build scripts..." - - set -xeuo pipefail - - find "build" -iname '*.sh' -print0 | \ - while IFS= read -r -d '' script ; do \ - echo "::group:: ===$(basename "$script")===" - shellcheck -x "$script" - echo "✓ $script passed shellcheck" - echo "::endgroup::" - done - - echo "All shell scripts passed validation"