From a9da5c17655d23059b2e2e8c4bbe05be7dacb514 Mon Sep 17 00:00:00 2001 From: Tyler Koenig Date: Thu, 21 May 2026 11:07:37 -0400 Subject: [PATCH] fix(ci): act runner compatibility - Default shell to sh (act runner image lacks bash) - Drop -race flag (requires cgo, unavailable in act runner) --- .gitea/workflows/ci.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 3bccfb9..17fabed 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -8,6 +8,9 @@ on: jobs: test: runs-on: ubuntu-latest + defaults: + run: + shell: sh steps: - uses: actions/checkout@v4 @@ -28,7 +31,7 @@ jobs: fi - name: Test - run: go test -race -count=1 ./... + run: go test -count=1 ./... - name: Build run: go build -trimpath -o nib .