complete/.travis.yml

17 lines
234 B
YAML
Raw Normal View History

2017-05-05 16:38:16 -05:00
language: go
sudo: false
go:
- 1.8
- tip
before_install:
- go get -u -t ./...
script:
2017-05-06 12:58:01 -05:00
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
2017-05-05 16:38:16 -05:00
after_success:
- bash <(curl -s https://codecov.io/bash)
comment: off