.travis.yml 387 Bytes
Newer Older
Steven Allen's avatar
Steven Allen committed
1 2 3 4 5 6
os:
  - linux

language: go

go:
Steven Allen's avatar
Steven Allen committed
7
  - 1.13.x
Steven Allen's avatar
Steven Allen committed
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

env:
  global:
    - GOTFLAGS="-race"
  matrix:
    - BUILD_DEPTYPE=gomod


# disable travis install
install:
  - true

script:
  - bash <(curl -s https://raw.githubusercontent.com/ipfs/ci-helpers/master/travis-ci/run-standard-tests.sh)


cache:
  directories:
    - $GOPATH/pkg/mod
    - $HOME/.cache/go-build

notifications:
  email: false