.travis.yml 372 Bytes
Newer Older
1
sudo: false
2 3


4
language: go
5
go:
6 7 8 9 10 11
  - 'tip'
  
install:
  - go get github.com/whyrusleeping/gx
  - go get github.com/whyrusleeping/gx-go
  - gx install --global
12
script:
13 14 15 16
  - gx test -v -race -coverprofile=coverage.txt -covermode=atomic .
  
after_success:
  - bash <(curl -s https://codecov.io/bash)
17 18

cache:
19 20
  directories:
    - $GOPATH/src/gx
21 22

notifications:
23 24
email: false