AmitKumarDas / Decisions

Apache License 2.0
10 stars 3 forks source link

Go: Dep vs Module - go 1.13, install #242

Open AmitKumarDas opened 4 years ago

AmitKumarDas commented 4 years ago
before_install:
- go get -u github.com/golang/dep/cmd/dep
# NOTE: The latest version of dep requires go 1.13
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then mkdir -p /Users/travis/gopath/bin; fi
- GO111MODULE=on curl https://raw.githubusercontent.com/golang/dep/v0.5.1/install.sh | sh
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then GO111MODULE=on scripts/install_and_setup.sh; fi