mark2web/vendor/github.com/smartystreets/assertions/Makefile

15 lines
181 B
Makefile
Raw Permalink Normal View History

2022-02-28 10:28:34 +01:00
#!/usr/bin/make -f
test: fmt
go test -timeout=1s -race -cover -short -count=1 ./...
fmt:
go fmt ./...
compile:
go build ./...
build: test compile
.PHONY: test compile build