xgo/Makefile

12 lines
121 B
Makefile
Raw Normal View History

2019-01-09 10:17:42 +03:00
vet:
go vet ./...
lint:
golint -set_exit_status ./...
test: vet lint
2019-01-09 10:17:42 +03:00
go test -race -cover ./...
fmt:
go fmt ./...