From 26268bb6ef324f3de92b338f3e1419485ce5ef93 Mon Sep 17 00:00:00 2001 From: Tyler Koenig Date: Sun, 24 May 2026 12:49:21 -0400 Subject: [PATCH] fix(ci): install gcc for race detector support --- .gitea/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 0e061a3..3493f2a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -18,6 +18,9 @@ jobs: with: go-version: "1.24" + - name: Install build tools + run: apk add --no-cache gcc musl-dev + - name: Vet run: go vet ./...