mirror of
https://github.com/cheat/cheat.git
synced 2026-05-28 03:58:44 +02:00
95a4e31b6c
Upgrade all dependencies to newest versions.
12 lines
237 B
Makefile
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) ./...
|