pipeline: build: image: golang:1.12 group: build commands: - go get -v -d ./... - go build . test: image: golang:1.12 group: test commands: - go get -v -d ./... - go test -v ./...