From 0187fb6cec75969eb4c16d000b3970e90649de73 Mon Sep 17 00:00:00 2001 From: svtter Date: Thu, 9 Apr 2026 17:23:16 +0800 Subject: [PATCH] fix: remove validate job (shellcheck + local tests) --- .github/workflows/ci.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e13643d..b7d2377 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,32 +9,6 @@ permissions: contents: read jobs: - validate: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v6 - - - name: Install shellcheck - run: | - sudo apt-get update - sudo apt-get install -y shellcheck - - - name: Lint shell scripts - run: | - shellcheck setup-opencode/install-opencode.sh - shellcheck github-run-opencode/run-github-opencode.sh - shellcheck run-opencode/run-opencode.sh - shellcheck tests/setup-opencode.sh - shellcheck tests/run-opencode.sh - shellcheck tests/github-run-opencode.sh - shellcheck tests/review-action.sh - shellcheck tests/test.sh - shellcheck tests/fixtures/fake-installer.sh - - - name: Run local test suite - run: bash tests/test.sh - smoke-actions: runs-on: ubuntu-latest steps: