mirror of
https://github.com/strongdm/comply
synced 2024-11-06 07:55:26 +00:00
7468711b3b
Releases after github.com/xanzy/go-gitlab@v0.31.0 introduce breaking changes to the NewClient call. Addresses #94
12 lines
145 B
Makefile
12 lines
145 B
Makefile
default: test
|
|
|
|
test:
|
|
go vet ./...
|
|
go test -race ./...
|
|
|
|
updatedeps:
|
|
go get -f -t -u ./...
|
|
go get -f -u ./...
|
|
|
|
.PHONY: default test updatedeps
|