summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-04 08:16:37 +0200
committerPaul Buetow <paul@buetow.org>2026-03-04 08:16:37 +0200
commit12497fadbc0e63f137581d1be44bd3dad3e2c25a (patch)
tree9485e3e15b141191807a4046743b96b9b755aae9
parent8754d9a6c82bec49b3ab3316b0e1a9836e8ccb76 (diff)
mage: run tests with race detector
-rw-r--r--Magefile.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/Magefile.go b/Magefile.go
index f0da006..4b150c0 100644
--- a/Magefile.go
+++ b/Magefile.go
@@ -17,7 +17,7 @@ func Run() error {
}
func Test() error {
- return sh.RunV("go", "test", "./...")
+ return sh.RunV("go", "test", "-race", "./...")
}
func Lint() error {