kind: pipeline type: docker name: gopay platform: os: linux arch: amd64 steps: - name: test pull: if-not-exists image: golang:1.13 environment: GO111MODULE: "on" GOPROXY: "https://goproxy.cn,direct" CGO_ENABLED: "0" GOOS: "linux" commands: - go version - go env - go test ./... trigger: branch: - master event: - push - pull_request - tag