diff options
author | Wim <wim@42.be> | 2020-03-01 21:50:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-01 21:50:21 +0100 |
commit | 3ac2ba8d5a0d683c24f91c0a820b8470bd9339cc (patch) | |
tree | 970934e060909ecae70ff35afc78e32fa22fba0a /.travis.yml | |
parent | d893421c7b2a5ceccac01600d976f3f7ba7ab780 (diff) | |
download | matterbridge-msglm-3ac2ba8d5a0d683c24f91c0a820b8470bd9339cc.tar.gz matterbridge-msglm-3ac2ba8d5a0d683c24f91c0a820b8470bd9339cc.tar.bz2 matterbridge-msglm-3ac2ba8d5a0d683c24f91c0a820b8470bd9339cc.zip |
Update to go1.14 and golangci-lint 1.23.7 (#1020)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index 4c80c1d1..e3380ba5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,22 +20,22 @@ jobs: - stage: lint # Run linting in one Go environment only. script: ./ci/lint.sh - go: 1.13.x + go: 1.14.x env: - GO111MODULE=on - - GOLANGCI_VERSION="v1.21.0" + - GOLANGCI_VERSION="v1.23.7" - stage: test # Run tests in a combination of Go environments. script: ./ci/test.sh - go: 1.12.x + go: 1.13.x env: - - GO111MODULE=off + - GOFLAGS=-mod=vendor - script: ./ci/test.sh - go: 1.12.x + go: 1.13.x env: - GO111MODULE=on - script: ./ci/test.sh - go: 1.13.x + go: 1.14.x env: - GO111MODULE=on - REPORT_COVERAGE=1 |