.travis.yml 376 Bytes
Newer Older
Kevin Atkinson's avatar
Kevin Atkinson committed
1 2 3 4 5 6 7 8 9 10 11 12
sudo: false


language: go
go:
  - 'tip'
  
install:
  - go get github.com/whyrusleeping/gx
  - go get github.com/whyrusleeping/gx-go
  - gx install --global
script:
13
  - gx test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
Kevin Atkinson's avatar
Kevin Atkinson committed
14 15 16 17 18 19 20 21 22 23 24
  
after_success:
  - bash <(curl -s https://codecov.io/bash)

cache:
  directories:
    - $GOPATH/src/gx

notifications:
email: false