vikunja/vendor/github.com/labstack/echo/.travis.yml

17 lines
318 B
YAML
Raw Normal View History

2018-07-24 12:06:03 +00:00
language: go
go:
2019-03-24 09:13:40 +00:00
- 1.11.x
2018-11-03 15:05:45 +00:00
- tip
2019-03-24 09:13:40 +00:00
env:
- GO111MODULE=on
2018-07-24 12:06:03 +00:00
install:
2019-03-24 09:13:40 +00:00
- go get -v golang.org/x/lint/golint
2018-07-24 12:06:03 +00:00
script:
2019-03-24 09:13:40 +00:00
- golint -set_exit_status ./...
- go test -race -coverprofile=coverage.txt -covermode=atomic ./...
2018-11-03 15:05:45 +00:00
after_success:
- bash <(curl -s https://codecov.io/bash)
2018-07-24 12:06:03 +00:00
matrix:
allow_failures:
- go: tip