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.
gzip/.drone.yml
techknowlogick b5d44903bd
All checks were successful
continuous-integration/drone/push Build is passing
test against go1.14 & 1.15 (#4)
test against go1.14 & 1.15

Reviewed-on: #4
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Reviewed-by: mrsdizzie <info@mrsdizzie.com>
2020-08-26 18:09:00 +00:00

24 lines
426 B
YAML

kind: pipeline
name: go1-14
steps:
- name: test
image: golang:1.14
environment:
GOPROXY: https://goproxy.cn
commands:
- go build -v
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
---
kind: pipeline
name: go1-15
steps:
- name: test
image: golang:1.15
environment:
GOPROXY: https://goproxy.cn
commands:
- go build -v
- go test -v -race -coverprofile=coverage.txt -covermode=atomic