* update consul and vault dependencies * update triton sign call accorting to https://github.com/joyent/triton-go/pull/135 * Delete readme.md * put back github.com/mitchellh/reflectwalk to v1.0.0 and explain why * fix/fixer_pp_docker_tag_tags.go: simplify deduplication loop and keep seen/stable order
18 lines
377 B
Makefile
18 lines
377 B
Makefile
TEST?=./...
|
|
|
|
default: test
|
|
|
|
# test runs the test suite and vets the code
|
|
test:
|
|
go list $(TEST) | xargs -n1 go test -timeout=60s -parallel=10 $(TESTARGS)
|
|
|
|
# testrace runs the race checker
|
|
testrace:
|
|
go list $(TEST) | xargs -n1 go test -race $(TESTARGS)
|
|
|
|
# updatedeps installs all the dependencies to run and build
|
|
updatedeps:
|
|
go mod download
|
|
|
|
.PHONY: test testrace updatedeps
|