hermes/.travis.yml

19 lines
367 B
YAML
Raw Normal View History

2017-03-28 16:50:07 +00:00
language: go
go:
- 1.7
- 1.8
- master
install:
2017-08-26 09:48:41 +00:00
- go get -u github.com/golang/dep/cmd/dep
- dep ensure
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-08-26 09:48:41 +00:00
- gometalinter --vendor --config=./gometalinter.json ./...
2017-03-30 18:57:35 +00:00
after_success:
- bash <(curl -s https://codecov.io/bash)