stringy/.travis.yml

13 lines
299 B
YAML
Raw Normal View History

2020-04-05 16:01:10 +03:00
language: go
sudo: false
2020-07-17 11:32:40 +03:00
go_import_path: github.com/gobeam/stringy
2020-04-05 16:01:10 +03:00
go:
2020-04-22 14:17:16 +03:00
- 1.13
2020-04-05 16:01:10 +03:00
2020-04-22 14:17:16 +03:00
before_install:
- go get github.com/mattn/goveralls
2020-04-05 16:01:10 +03:00
2020-04-22 14:17:16 +03:00
script:
- go test -cover -coverprofile=.coverprofile $(go list .)
2020-07-17 12:56:05 +03:00
- $GOPATH/bin/goveralls -service=travis-ci -coverprofile=.coverprofile -repotoken=REPO_TOKEN