ci: use golang:1.25 (not alpine) for race detector support
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/pre-commit Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful

This commit is contained in:
2026-06-07 19:27:37 +10:00
parent 21d286c62a
commit 7433bbfdb6
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ when:
steps:
- name: pre-commit
image: golang:1.25-alpine
image: golang:1.25
commands:
- test -z "$(gofmt -l .)"
- go vet ./...
+1 -1
View File
@@ -3,6 +3,6 @@ when:
steps:
- name: test
image: golang:1.25-alpine
image: golang:1.25
commands:
- go test -race -count=1 ./pkg/... ./internal/...