telebot/.travis.yml

14 lines
240 B
YAML
Raw Normal View History

2015-10-15 14:56:00 +00:00
language: go
2020-04-16 16:26:54 +00:00
go:
2020-09-26 11:12:32 +00:00
- 1.13.x
2020-04-16 16:26:54 +00:00
2020-05-01 14:56:51 +00:00
install:
- go get -t -v
2020-04-16 16:26:54 +00:00
script:
- go test -coverprofile=coverage.txt -covermode=atomic
after_success:
2020-05-06 17:45:12 +00:00
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash <(curl -s https://codecov.io/bash); fi