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

15 lines
268 B
YAML
Raw Normal View History

2022-04-03 10:46:51 +08:00
kind: pipeline
type: docker
name: default
2021-04-22 21:58:40 +08:00
2022-04-03 10:46:51 +08:00
steps:
- name: build
image: golang
commands:
- pwd && ls
2022-09-29 19:30:23 +08:00
- go env -w GO111MODULE=on
- go env -w GOPROXY=https://goproxy.cn,direct
2022-04-03 10:46:51 +08:00
- go mod init alidns && go mod tidy
- go build alidns.go
- go test