hermes/.travis.yml

20 lines
344 B
YAML
Raw Normal View History

2017-03-28 16:50:07 +00:00
language: go
go:
- 1.6
- 1.7
- 1.8
- master
install:
2017-03-28 16:57:33 +00:00
- go get ./...
- go get -t ./...
2017-03-28 16:50:07 +00:00
- go get -u github.com/alecthomas/gometalinter
- gometalinter -u -i -f
script:
2017-03-30 19:02:49 +00:00
- go test -race -coverprofile=coverage.txt -covermode=atomic
2017-03-30 18:57:35 +00:00
- gometalinter --config=./gometalinter.json ./...
after_success:
- bash <(curl -s https://codecov.io/bash)