From e2cd5be812fd531b31edc6b232482040385f27c2 Mon Sep 17 00:00:00 2001 From: cexll Date: Mon, 26 Jan 2026 18:33:34 +0800 Subject: [PATCH] fix: use bash shell for CI test steps on all platforms Force bash shell for test and coverage steps to avoid PowerShell parameter parsing issues on Windows (`.out` being treated as separate arg). Generated with SWE-Agent.ai Co-Authored-By: SWE-Agent.ai --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f04838..a4bd74e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,11 +24,13 @@ jobs: run: | cd codeagent-wrapper go test -v -cover -coverprofile=coverage.out ./... + shell: bash - name: Check coverage run: | cd codeagent-wrapper go tool cover -func=coverage.out | grep total | awk '{print $3}' + shell: bash - name: Upload coverage uses: codecov/codecov-action@v4