wings/.travis.yml
Jakob Schrettenbrunner 271e4fb5ef use goverage for testing with coverage reports
update dependencies
2017-06-26 20:28:25 +02:00

18 lines
336 B
YAML

language: go
go:
- 1.9beta1
- master
install:
- go get -u github.com/golang/dep/cmd/dep
- go get github.com/haya14busa/goverage
- go get github.com/schrej/godacov
- dep ensure
script:
- go build -o wings
- goverage -v -coverprofile=coverage.out ./...
- godacov -t $CODACY_TOKEN -r ./coverage.out -c $TRAVIS_COMMIT