33 lines
618 B
YAML
33 lines
618 B
YAML
clone:
|
|
path: github.com/go-openapi/swag
|
|
|
|
matrix:
|
|
GO_VERSION:
|
|
- "1.6"
|
|
|
|
build:
|
|
integration:
|
|
image: golang:$$GO_VERSION
|
|
pull: true
|
|
commands:
|
|
- go get -u github.com/stretchr/testify
|
|
- go get -u github.com/mailru/easyjson
|
|
- go test -race
|
|
- go test -v -cover -coverprofile=coverage.out -covermode=count ./...
|
|
|
|
notify:
|
|
slack:
|
|
channel: bots
|
|
webhook_url: $$SLACK_URL
|
|
username: drone
|
|
|
|
publish:
|
|
coverage:
|
|
server: https://coverage.vmware.run
|
|
token: $$GITHUB_TOKEN
|
|
# threshold: 70
|
|
# must_increase: true
|
|
when:
|
|
matrix:
|
|
GO_VERSION: "1.6"
|