ci: fix build for go 1.13 (#96)

Updates modules handling so build passes in Go 1.13. Bypasses modules for tools install in bootstrap. Upgrades golangci-lint version to avoid bug with v1.17.1 under Go 1.13.

Fixes #95
This commit is contained in:
Michael McLoughlin
2019-09-15 14:43:44 -07:00
committed by GitHub
parent bb615f61ce
commit 0bcbe82731
4 changed files with 23 additions and 22 deletions

9
go.mod
View File

@@ -1,9 +1,8 @@
module github.com/mmcloughlin/avo
go 1.11
require (
github.com/campoy/embedmd v1.0.0 // indirect
github.com/dlespiau/covertool v0.0.0-20180314162135-b0c4c6d0583a // indirect
github.com/urfave/cli v1.20.0 // indirect
golang.org/x/arch v0.0.0-20181203225421-5a4828bb7045
golang.org/x/tools v0.0.0-20190106171756-3ef68632349c
golang.org/x/arch v0.0.0-20190909030613-46d78d1859ac
golang.org/x/tools v0.0.0-20190914235951-31e00f45c22e
)