mirror of
https://github.com/tucnak/telebot
synced 2024-11-11 01:10:39 +00:00
14 lines
249 B
YAML
14 lines
249 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.11.x
|
|
|
|
before_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)
|