go-mastodon/.travis.yml

15 lines
173 B
YAML
Raw Normal View History

2017-04-14 10:14:55 +02:00
language: go
2019-06-21 18:54:32 +02:00
sudo: false
2017-04-14 10:14:55 +02:00
go:
2019-06-21 18:54:32 +02:00
- 1.8.x
2017-04-14 10:14:55 +02:00
- tip
2019-06-21 18:54:32 +02:00
2017-04-14 10:14:55 +02:00
before_install:
2019-06-21 18:54:32 +02:00
- go get -t -v ./...
2017-04-14 10:14:55 +02:00
script:
2019-06-21 18:54:32 +02:00
- ./go.test.sh
after_success:
- bash <(curl -s https://codecov.io/bash)