Files
redoctober/.travis.yml

22 lines
668 B
YAML

sudo: false
language: go
go: 1.5
script:
- go get github.com/modocache/gover
- go get github.com/cloudflare/redoctober
- go test github.com/cloudflare/redoctober...
- go vet github.com/cloudflare/redoctober...
- ./scripts/validate-html-generation
- go list -f '{{if len .TestGoFiles}}"go test -coverprofile={{.Dir}}/.coverprofile {{.ImportPath}}"{{end}}' ./... | xargs -i sh -c {}
- gover . coverprofile.txt
after_success:
- bash <(curl -s https://codecov.io/bash) -f coverprofile.txt
notifications:
email:
recipients:
- nick@cloudflare.com
- kyle@cloudflare.com
- zi@cloudflare.com
on_success: never
on_failure: change