mirror of
https://github.com/cheat/cheat.git
synced 2024-11-17 17:35:21 +01:00
95a4e31b6c
Upgrade all dependencies to newest versions.
11 lines
237 B
Makefile
11 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) ./...
|