This repository has been archived on 2020-11-12. You can view files and clone it, but cannot push or open issues or pull requests.
i18n/.drone.yml
techknowlogick 4ca3dd0cbd
All checks were successful
continuous-integration/drone/push Build is passing
Test against go1.14 and go1.15 (#6)
Test against go1.14 and go1.15

Reviewed-on: #6
Reviewed-by: Andrew Thornton <art27@cantab.net>
Reviewed-by: 6543 <6543@noreply.gitea.io>
2020-09-11 00:44:04 +00:00

24 lines
440 B
YAML

kind: pipeline
name: golang-1-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: golang-1-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