service/vendor/github.com/go-pay/gopay/.drone.yml

35 lines
487 B
YAML
Raw Normal View History

2023-12-21 22:17:40 +08:00
kind: pipeline
type: docker
name: gopay
clone:
depth: 1
platform:
os: linux
arch: amd64
steps:
- name: ci_1.18
pull: if-not-exists
image: golang:1.18
environment:
GO111MODULE: "on"
GOPROXY: "https://goproxy.cn,direct"
GOSUMDB: "off"
CGO_ENABLED: "0"
GOOS: "linux"
commands:
- go version
- go env
- go mod tidy
- go test ./...
trigger:
branch:
- main
event:
- push
- pull_request
- tag