blob: 28d786397d4b40b5867f90fcf299caa63ee9e727 [file] [log] [blame] [edit]
SHELL = bash
default: test
.PHONY: test
test:
@echo "--> Running Tests ..."
@go test -v -race ./...
vet:
@echo "--> Vet Go sources ..."
@go vet ./...