You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
363 B
21 lines
363 B
---
|
|
kind: pipeline
|
|
name: testing
|
|
|
|
steps:
|
|
- name: test
|
|
pull: default
|
|
image: golang:1.11
|
|
commands:
|
|
- go get -u golang.org/x/lint/golint
|
|
- golint ./...
|
|
- go vet
|
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
|
|
environment:
|
|
GOPROXY: https://goproxy.cn
|
|
GO111MODULE: "on"
|
|
when:
|
|
event:
|
|
- push
|
|
- tag
|
|
- pull_request |