minio/.travis.yml

30 lines
384 B
YAML
Raw Normal View History

go_import_path: github.com/minio/minio
2016-02-10 16:40:09 -08:00
sudo: required
services:
- docker
2016-02-10 16:40:09 -08:00
dist: trusty
2015-04-11 17:23:13 -07:00
language: go
os:
- linux
env:
- ARCH=x86_64
script:
## Run all the tests
2016-12-02 17:42:37 -08:00
- make
- diff -au <(gofmt -d cmd) <(printf "")
- diff -au <(gofmt -d pkg) <(printf "")
- make test GOFLAGS="-timeout 15m -race -v"
2016-08-04 16:48:50 -07:00
- make coverage
after_success:
- bash <(curl -s https://codecov.io/bash)
2015-04-11 17:23:13 -07:00
go:
- 1.9.1