wings/.travis.yml

16 lines
283 B
YAML
Raw Normal View History

2017-06-26 09:15:19 +00:00
language: go
go:
2017-06-26 11:45:23 +00:00
- 1.9beta1
2017-06-26 09:15:19 +00:00
- master
install:
- go get -u github.com/golang/dep/cmd/dep
- go get github.com/schrej/godacov
2017-06-26 09:15:19 +00:00
- dep ensure
2017-06-26 09:43:56 +00:00
script:
- go build -o wings
- go test -coverprofile=coverage.out
- godacov -t $CODACY_TOKEN -r ./coverage.out -c $TRAVIS_COMMIT