From 48207c131e05dd10557719808a550aa74822e377 Mon Sep 17 00:00:00 2001 From: Yann Hamon Date: Sun, 29 Nov 2020 16:11:04 +0100 Subject: [PATCH] check for race conditions when running tests --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a166fb7..10c4fbd 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ test-build: test build test: - go test ./... + go test -race ./... build: go build -o bin/ ./...