hermes/.travis.yml

21 lines
438 B
YAML
Raw Permalink Normal View History

2017-03-28 16:50:07 +00:00
language: go
go:
- 1.6
2017-03-28 16:50:07 +00:00
- 1.7
- 1.8
2017-11-04 09:15:06 +00:00
- 1.9
2017-03-28 16:50:07 +00:00
install:
- curl -L https://github.com/golang/dep/releases/download/v0.3.2/dep-linux-amd64 -o dep
- chmod u+x 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:
2017-11-04 09:15:06 +00:00
- bash <(curl -s https://codecov.io/bash)