1234567891011121314151617181920212223242526272829 |
- 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
|