task "install-deps" { description = "Install all of package dependencies" pipeline = [ "go get -v {{.files}}", ] } task "tests" { description = "Run the test suite" command = "go test -v {{.files}}" environment = { GOFLAGS = "-mod=vendor" } } variables = { files = "$(go list -v ./... | grep -iEv \"tests|examples\")" }