Upgrade Travis Go to 1.12.x

Fixes Travis Windows build problem because go modules are enabled
by default in 1.12.x and don't need an environment variable to be
set.
This commit is contained in:
Zachary Yedidia
2020-06-20 20:22:31 -04:00
parent 42cc50106e
commit a1d863251f

View File

@@ -1,10 +1,10 @@
language: go
go:
- "1.11.x"
- "1.12.x"
os:
- linux
- osx
- windows
script:
- env GO111MODULE=on make build
- env GO111MODULE=on make test
- make build
- make test