You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
491 B
34 lines
491 B
go_import_path: github.com/minio/minio
|
|
sudo: required
|
|
|
|
services:
|
|
- docker
|
|
|
|
dist: trusty
|
|
|
|
language: go
|
|
|
|
os:
|
|
- linux
|
|
|
|
env:
|
|
- ARCH=x86_64
|
|
|
|
before_install:
|
|
- nvm install stable
|
|
|
|
script:
|
|
## Run all the tests
|
|
- make
|
|
- diff -au <(gofmt -s -d cmd) <(printf "")
|
|
- diff -au <(gofmt -s -d pkg) <(printf "")
|
|
- make test GOFLAGS="-timeout 15m -race -v"
|
|
- make coverage
|
|
- node --version
|
|
- cd browser && yarn && yarn test && cd ..
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
go:
|
|
- '1.10.1'
|
|
|