mirror of
https://github.com/strongdm/comply
synced 2024-11-16 21:04:54 +00:00
7468711b3b
Releases after github.com/xanzy/go-gitlab@v0.31.0 introduce breaking changes to the NewClient call. Addresses #94
27 lines
456 B
Makefile
27 lines
456 B
Makefile
SHELL = /bin/bash -o pipefail
|
|
|
|
BUMP_VERSION := $(GOPATH)/bin/bump_version
|
|
STATICCHECK := $(GOPATH)/bin/staticcheck
|
|
|
|
deps:
|
|
go get -u ./...
|
|
|
|
test: lint
|
|
go test ./...
|
|
|
|
lint: | $(STATICCHECK)
|
|
go vet ./...
|
|
$(STATICCHECK) ./...
|
|
|
|
$(STATICCHECK):
|
|
go get honnef.co/go/tools/cmd/staticcheck
|
|
|
|
race-test: lint
|
|
go test -race ./...
|
|
|
|
$(BUMP_VERSION):
|
|
go get github.com/kevinburke/bump_version
|
|
|
|
release: race-test | $(BUMP_VERSION)
|
|
$(BUMP_VERSION) minor client.go
|