This repository has been archived on 2020-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
axmlParser/.drone.yml
Lunny Xiao a0d0cd5d0e
Some checks failed
continuous-integration/drone/push Build is failing
go mod and readme
2020-01-21 15:37:51 +08:00

20 lines
323 B
YAML

---
kind: pipeline
name: go1.12
steps:
- name: test
pull: default
image: golang:1.12
environment:
GO111MODULE: on
GOPROXY: https://goproxy.cn
commands:
- go build -v
- go vet ./...
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
when:
event:
- push
- pull_request