1
0
mirror of https://github.com/eventials/goevents.git synced 2025-04-24 13:48:53 +08:00
eventials.goevents/.travis.yml

23 lines
423 B
YAML
Raw Normal View History

2016-12-01 15:14:33 -02:00
language: go
go:
2018-05-03 16:22:52 -03:00
- "1.9"
- "1.10"
- "tip"
2016-12-01 15:14:33 -02:00
install:
- go get github.com/streadway/amqp
- go get github.com/stretchr/testify
2017-07-17 10:20:08 -03:00
- go get github.com/sirupsen/logrus
2018-08-15 17:14:00 -03:00
- go get github.com/aws/aws-sdk-go/service/sqs
2016-12-01 15:14:33 -02:00
services:
- rabbitmq
addons:
hosts:
- broker
script: travis_retry go test -v ./...
2016-12-01 15:14:33 -02:00
notifications:
email:
recipients:
- devs@eventials.com
on_success: never
on_failure: always