mirror of
https://github.com/cheat/cheat.git
synced 2024-11-16 17:08:29 +01:00
95a4e31b6c
Upgrade all dependencies to newest versions.
17 lines
310 B
Makefile
17 lines
310 B
Makefile
# General
|
|
WORKDIR = $(PWD)
|
|
|
|
# Go parameters
|
|
GOCMD = go
|
|
GOTEST = $(GOCMD) test
|
|
|
|
# Coverage
|
|
COVERAGE_REPORT = coverage.out
|
|
COVERAGE_MODE = count
|
|
|
|
test:
|
|
$(GOTEST) ./...
|
|
|
|
test-coverage:
|
|
echo "" > $(COVERAGE_REPORT); \
|
|
$(GOTEST) -coverprofile=$(COVERAGE_REPORT) -coverpkg=./... -covermode=$(COVERAGE_MODE) ./...
|