Files
Gogs/vendor/github.com/smartystreets/assertions/Makefile
2019-07-28 16:03:54 -07:00

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