minio/.travis.yml
Alex d6a327fbc5 Add notifications by webhook.
Add a new config entry moving to version 13.
```
		"webhook": {
			"1": {
				"enable": true,
				"address": "http://requestb.in/1i9al7m1"
			}
		}
```
2017-01-12 10:19:59 -08:00

25 lines
258 B
YAML

go_import_path: github.com/minio/minio
sudo: required
dist: trusty
language: go
os:
- linux
env:
- ARCH=x86_64
- ARCH=i686
script:
- make
- make test GOFLAGS="-race"
- make coverage
after_success:
- bash <(curl -s https://codecov.io/bash)
go:
- 1.7.4