kind: pipeline type: docker name: default steps: - name: install image: golang:1.15 volumes: - name: cache path: /go commands: - go test -i ./... - name: test image: golang:1.15 volumes: - name: cache path: /go commands: - go test ./... volumes: - name: cache temp: {}