17 lines
415 B
YAML
17 lines
415 B
YAML
|
language: go
|
||
|
go:
|
||
|
- tip
|
||
|
- 1.6
|
||
|
- 1.5
|
||
|
- 1.4
|
||
|
install:
|
||
|
- go get -t -v ./...
|
||
|
- go get github.com/go-playground/overalls
|
||
|
- go get github.com/mattn/goveralls
|
||
|
- go get golang.org/x/tools/cmd/cover
|
||
|
script:
|
||
|
- go test -v ./...
|
||
|
- $GOPATH/bin/overalls -project=github.com/mmcdole/gofeed -covermode=count -ignore=.git,vendor -debug
|
||
|
after_success:
|
||
|
- $GOPATH/bin/goveralls -coverprofile=overalls.coverprofile -service=travis-ci
|