peridot/vendor/github.com/go-git/go-billy/v5/Makefile
2024-10-16 12:56:53 +02:00

12 lines
237 B
Makefile

# Go parameters
GOCMD = go
GOTEST = $(GOCMD) test
.PHONY: test
test:
$(GOTEST) -race ./...
test-coverage:
echo "" > $(COVERAGE_REPORT); \
$(GOTEST) -coverprofile=$(COVERAGE_REPORT) -coverpkg=./... -covermode=$(COVERAGE_MODE) ./...