This repository has been archived on 2023-12-12. You can view files and clone it, but cannot push or open issues or pull requests.
alidns/.drone.yml
wangjiacai b6a2eeb0d0
All checks were successful
continuous-integration/drone/push Build is passing
update go proxy
2022-09-29 19:30:23 +08:00

15 lines
268 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: build
image: golang
commands:
- pwd && ls
- go env -w GO111MODULE=on
- go env -w GOPROXY=https://goproxy.cn,direct
- go mod init alidns && go mod tidy
- go build alidns.go
- go test