Files
gocqlx/Makefile
2017-07-25 14:12:25 +02:00

23 lines
401 B
Makefile

all: check test
.PHONY: check
check:
gofmt -s -l . | ifne false
go vet ./...
golint -set_exit_status ./...
misspell ./...
ineffassign .
.PHONY: test
test:
go test -race ./...
go test -tags integration ./...
.PHONY: get-deps
get-deps:
go get -t ./...
go get -u github.com/golang/lint/golint
go get -u github.com/client9/misspell/cmd/misspell
go get -u github.com/gordonklaus/ineffassign