.travis.yml 298 Bytes
Newer Older
1 2 3 4 5 6 7
os:
  - linux
  - osx

language: go

go:
8
    - 1.9.x
9 10 11 12 13 14 15

install: true

before_install:
  - make deps

script:
16
  - bash <(curl -s https://raw.githubusercontent.com/ipfs/ci-helpers/master/travis-ci/run-standard-tests.sh)
17 18 19 20 21 22 23

cache:
    directories:
        - $GOPATH/src/gx

notifications:
  email: false