.travis.yml 387 Bytes
Newer Older
1 2
os:
  - linux
3 4

language: go
5

6
go:
Steven Allen's avatar
Steven Allen committed
7
  - 1.13.x
8 9 10 11 12 13 14 15 16

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


# disable travis install
17
install:
18 19
  - true

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

23 24 25

cache:
  directories:
26 27
    - $GOPATH/pkg/mod
    - $HOME/.cache/go-build
28 29

notifications:
30
  email: false