Added some dots to the makefile so everything runs with vet and test and such

pull/13/head
Chris Bednarski 9 years ago
parent b9a25f7aaf
commit 4203437444

@ -3,15 +3,15 @@ all: build test
deps:
go get github.com/golang/lint/golint
go get github.com/stretchr/testify/assert
go get
go get -u ./...
build: deps
go build cmd/hostess/hostess.go
test:
go test -coverprofile=coverage.out; go tool cover -html=coverage.out -o coverage.html
go vet
golint
go vet ./...
golint ./...
gox:
go get github.com/mitchellh/gox

Loading…
Cancel
Save