From 10fd7f2b6c643fdfeea501b25b1a01530befd03c Mon Sep 17 00:00:00 2001 From: Trong Huu Nguyen Date: Wed, 29 Mar 2023 10:03:37 +0200 Subject: [PATCH] ci: remove race detector --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3076a50..909d9f7 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ wonderwall: go build -trimpath -ldflags "-s -w" -a -o bin/wonderwall cmd/wonderwall/main.go test: - go test -count=1 -race -shuffle=on ./... -coverprofile cover.out + go test -count=1 -shuffle=on ./... -coverprofile cover.out check: go run honnef.co/go/tools/cmd/staticcheck ./...