.PHONY: arca vet lint test clean arca: go build -o arca . vet: go vet ./... lint: golangci-lint run ./... test: go test ./... clean: rm -f arca