From 287a794772110b7d795d5239c2d68268cd9e867b Mon Sep 17 00:00:00 2001 From: 9seconds Date: Thu, 12 Mar 2026 22:22:09 +0100 Subject: [PATCH] Always run tests with race detector --- .mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mise.toml b/.mise.toml index 18e8245..e49496c 100644 --- a/.mise.toml +++ b/.mise.toml @@ -33,7 +33,7 @@ run = "govulncheck ./..." [tasks.test] description = "Run tests" -run = "go test -v ./..." +run = "go test -v -race ./..." [tasks.covtest] description = "Run tests with code coverage"