8 lines
62 B
Makefile
8 lines
62 B
Makefile
.PHONY: test
|
|
|
|
deps:
|
|
go get -t ./...
|
|
|
|
test:
|
|
go test -v ./...
|