This repository has been archived on 2020-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
csrf/.drone.yml
techknowlogick 5ad530dccd
All checks were successful
continuous-integration/drone/push Build is passing
add drone (#3)
2019-08-05 05:22:34 +00:00

24 lines
432 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