diff options
author | Paulo Gomes <pjbgf@linux.com> | 2023-03-05 16:41:54 +0000 |
---|---|---|
committer | Paulo Gomes <pjbgf@linux.com> | 2023-03-05 16:59:35 +0000 |
commit | eddd209ed525a7814ffc80fc2bcd05eb31d0c23a (patch) | |
tree | 62c6f8a69e1a78b685e319b0d8ada07fefae2181 /Makefile | |
parent | 7368bb92af69a10ca786bfdcbbd52008e3d8395c (diff) | |
download | go-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ build-git: test: @echo "running against `git version`"; \ - $(GOTEST) ./... + $(GOTEST) -race ./... test-coverage: @echo "running against `git version`"; \ |