version: '3' tasks: build: cmds: - go build -o gorum cmd/gorum/main.go dev: deps: ["vet", "lint", "test"] cmds: - go build -race -o gorum cmd/gorum/main.go test: cmds: - go clean -testcache - go test ./... -v -race vet: cmds: - go vet **/*.go lint: cmds: - golangci-lint run lint-install: cmds: - go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest