6 lines
65 B
Makefile
6 lines
65 B
Makefile
|
.PHONY: test
|
||
|
.DEFAULT_GOAL: test
|
||
|
|
||
|
test:
|
||
|
go test ./... -v -cover
|