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

12 lines
135 B
Makefile
Executable File

#!/usr/bin/make -f
test:
go test -timeout=1s -short ./...
compile:
go build ./...
build: test compile
.PHONY: test compile build