This repository has been archived on 2021-06-21. You can view files and clone it, but cannot push or open issues/pull-requests.
2020-01-29 04:01:33 +00:00
|
|
|
GO ?= go
|
|
|
|
|
|
|
|
.PHONY: fmt
|
|
|
|
fmt:
|
2020-02-20 17:25:24 +00:00
|
|
|
$(GO) fmt ./...
|
|
|
|
|
|
|
|
.PHONY: test
|
|
|
|
test:
|
|
|
|
$(GO) test -race ./...
|