Skip to content

Commit

Permalink
ci: Enable race detection for go tests
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
pjbgf committed Mar 5, 2023
1 parent 7368bb9 commit eddd209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -27,7 +27,7 @@ build-git:

test:
@echo "running against `git version`"; \
$(GOTEST) ./...
$(GOTEST) -race ./...

test-coverage:
@echo "running against `git version`"; \
Expand Down

0 comments on commit eddd209

Please sign in to comment.