telebot/.travis.yml
2020-09-26 18:58:00 +03:00

14 lines
240 B
YAML

language: go
go:
- 1.13.x
install:
- go get -t -v
script:
- go test -coverprofile=coverage.txt -covermode=atomic
after_success:
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash <(curl -s https://codecov.io/bash); fi