Setup CircleCI and goreleaser

This commit is contained in:
Geoff Bourne
2018-05-09 18:37:15 -05:00
parent 17a4bd6515
commit fccf5f9eef
5 changed files with 127 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
test: vendor
go test ./...
vendor:
dep ensure -vendor-only
.PHONY: release
release: vendor
curl -sL https://git.io/goreleaser | bash
.PHONY: install-dep
install-dep:
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh