| 123456789101112131415161718192021 | ---kind: pipelinename: testingtrigger:  ref:  - refs/heads/master  - refs/pull/*/headsteps:- name: test  pull: default  image: golang:1.11  commands:  - go get -u golang.org/x/lint/golint  - golint ./...  - go vet  - go test -v -race -coverprofile=coverage.txt -covermode=atomic  environment:    GOPROXY: https://goproxy.io    GO111MODULE: "on"
 |