xgo/Makefile
Daniel Kang 8171d58071
Error Object (#4)
add error expression and error object
2019-01-16 12:23:20 -08:00

11 lines
121 B
Makefile

vet:
go vet ./...
lint:
golint -set_exit_status ./...
test: vet lint
go test -race -cover ./...
fmt:
go fmt ./...