aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorPaulo Gomes <pjbgf@linux.com>2023-03-05 16:41:54 +0000
committerPaulo Gomes <pjbgf@linux.com>2023-03-05 16:59:35 +0000
commiteddd209ed525a7814ffc80fc2bcd05eb31d0c23a (patch)
tree62c6f8a69e1a78b685e319b0d8ada07fefae2181 /Makefile
parent7368bb92af69a10ca786bfdcbbd52008e3d8395c (diff)
downloadgo-git-eddd209ed525a7814ffc80fc2bcd05eb31d0c23a.tar.gz
ci: Enable race detection for go tests
After the fix of data races in go-billy (go-git/go-billy/pull/28) race detection can be enabled in go-git to ensure no new issues go undetected. Signed-off-by: Paulo Gomes <pjbgf@linux.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d10922f..2acb8bc 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,7 @@ build-git:
test:
@echo "running against `git version`"; \
- $(GOTEST) ./...
+ $(GOTEST) -race ./...
test-coverage:
@echo "running against `git version`"; \