.PHONY: test

export GO111MODULE=on

install:
	@go mod vendor

build:
	@go build

test:
	@go test -v ./test/...

