ci(gometalinter): Use gometalinter.v2 over v1

This commit is contained in:
Adam S Levy 2018-08-29 09:41:37 -08:00
parent f8e8106b9d
commit 2ef7ee5307
1 changed files with 4 additions and 4 deletions

View File

@ -7,12 +7,12 @@ go:
- 1.8
before_install:
- GO111MODULE=on go get -u -t ./...
- GO111MODULE=on go get -u gopkg.in/alecthomas/gometalinter.v1
- gometalinter.v1 --install
- go get -u -t ./...
- go get -u gopkg.in/alecthomas/gometalinter.v2
- gometalinter.v2 --install
script:
- gometalinter.v1 --config metalinter.json ./...
- gometalinter.v2 --config metalinter.json ./...
- GO111MODULE=on ./test.sh
after_success: