This repository has been archived on 2019-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
binding/.drone.yml
Lunny Xiao 5ca179b7a4
All checks were successful
continuous-integration/drone/push Build is passing
add drone support (#2)
2019-08-05 03:19:19 +00:00

24 lines
428 B
YAML

kind: pipeline
name: go1-1-1
steps:
- name: test
image: golang:1.11
environment:
GOPROXY: https://goproxy.cn
commands:
- go build -v
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
---
kind: pipeline
name: go1-1-2
steps:
- name: test
image: golang:1.12
environment:
GOPROXY: https://goproxy.cn
commands:
- go build -v
- go test -v -race -coverprofile=coverage.txt -covermode=atomic