mirror of
https://github.com/eventials/goevents.git
synced 2025-04-24 13:48:53 +08:00
22 lines
355 B
YAML
22 lines
355 B
YAML
language: go
|
|
go:
|
|
- 1.9
|
|
- 1.10
|
|
- tip
|
|
install:
|
|
- go get github.com/streadway/amqp
|
|
- go get github.com/stretchr/testify
|
|
- go get github.com/sirupsen/logrus
|
|
services:
|
|
- rabbitmq
|
|
addons:
|
|
hosts:
|
|
- broker
|
|
script: go test -v ./...
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- devs@eventials.com
|
|
on_success: never
|
|
on_failure: always
|