From e46688a494a2657c5c5c1925f0ba02fcf9394fba Mon Sep 17 00:00:00 2001 From: Dustin Oprea Date: Mon, 1 Jun 2020 00:29:19 -0400 Subject: [PATCH] .travis.yml: Bugfix for no module support in CI Tip of dependency is broken and it was affecting us: https://github.com/go-errors/errors/issues/27 - We also disabled 1.10 and 1.11 due to lack of support in dependencies now that we're being recognized as a module. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 853d17c..5e51f28 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,8 @@ go: - stable - "1.13" - "1.12" - - "1.11" - - "1.10" +env: + - GO111MODULE=on install: - go get -t ./... - go get github.com/mattn/goveralls