From 5915e0ebe33b2dd513b4a1e91aaeeed3691d8221 Mon Sep 17 00:00:00 2001 From: Tyler Koenig Date: Sun, 24 May 2026 12:45:28 -0400 Subject: [PATCH] fix(ci): enable CGO for race detector, use lint-action v7 --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 0c0a130..0e061a3 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: run: go vet ./... - name: Test - run: go test -race -timeout 120s ./... + run: CGO_ENABLED=1 go test -race -timeout 120s ./... lint: runs-on: ubuntu-latest @@ -33,6 +33,6 @@ jobs: with: go-version: "1.24" - - uses: golangci/golangci-lint-action@v6 + - uses: golangci/golangci-lint-action@v7 with: version: v2.11.2