stringy/.travis.yml

13 lines
298 B
YAML
Raw Normal View History

2020-04-05 16:01:10 +03:00
language: go
sudo: false
2022-12-12 20:10:43 +03:00
go_import_path: git.internal/re/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:58:10 +03:00
- $GOPATH/bin/goveralls -service=travis-ci -coverprofile=.coverprofile -repotoken=$REPO_TOKEN