wings/.travis.yml
2017-06-26 16:59:02 +02:00

16 lines
283 B
YAML

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