Files
gocqlx/Makefile

23 lines
384 B
Makefile
Raw Normal View History

2017-07-21 15:13:09 +02:00
all: check test
.PHONY: check
check:
gofmt -s -l . | ifne false
go vet ./...
golint ./...
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