Skip to content

Commit

Permalink
Merge pull request #2 from ContaAzul/make
Browse files Browse the repository at this point in the history
Add Makefile
  • Loading branch information
diogonicoleti committed Nov 21, 2017
2 parents 6ff34e9 + 4482ccb commit aa49bcb
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
setup:
go get -u github.com/alecthomas/gometalinter
go get -u github.com/golang/dep/cmd/dep
dep ensure -v
gometalinter -i -u

build:
go build

test:
go test -v ./...

lint:
gometalinter --vendor --deadline=60s ./...

ci: test lint

.DEFAULT_GOAL := build

0 comments on commit aa49bcb

Please sign in to comment.