kind: pipeline name: default platform: os: linux arch: amd64 steps: - name: test image: golang:latest commands: - go test -v . - name: benchmark image: golang:latest commands: - go test -bench . - name: vet image: golang:latest commands: - go vet .