diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..4cfe98c2424d60b3a50d870dc0da5df2ee9243ba --- /dev/null +++ b/.travis.yml @@ -0,0 +1,32 @@ +os: + - linux + +language: go + +go: + - 1.11.x + +env: + global: + - GOTFLAGS="-race" + matrix: + - BUILD_DEPTYPE=gx + - 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/src/gx + - $GOPATH/pkg/mod + - $HOME/.cache/go-build + +notifications: + email: false diff --git a/go.mod b/go.mod new file mode 100644 index 0000000000000000000000000000000000000000..912f63a6117d22735aed57485bd289738c15df56 --- /dev/null +++ b/go.mod @@ -0,0 +1 @@ +module github.com/ipfs/go-detect-race