You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
GO ?= go
|
|
|
|
.PHONY: vet
|
|
vet:
|
|
$(GO) vet ./...
|
|
|
|
.PHONY: fmt
|
|
fmt:
|
|
$(GO) fmt ./...
|
|
|
|
.PHONY: test
|
|
test:
|
|
$(GO) test -race ./...
|
|
|
|
.PHONY: golden
|
|
golden:
|
|
cd _testdata && $(GO) run golden.go
|
|
$(GO) fmt _testdata/test.json.go _testdata/test.toml.go _testdata/test.yaml.go
|