diff options
author | Wim <wim@42.be> | 2019-04-04 23:05:52 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2019-04-04 23:05:58 +0200 |
commit | 4d575ba13ae59fdb6e19c216830def11b23ac081 (patch) | |
tree | d1dcd7a9edd707179ad601f2387d3c07002cd893 | |
parent | 7f0e4ad4487cf03288af7519434f5d54844f47e1 (diff) | |
download | matterbridge-msglm-4d575ba13ae59fdb6e19c216830def11b23ac081.tar.gz matterbridge-msglm-4d575ba13ae59fdb6e19c216830def11b23ac081.tar.bz2 matterbridge-msglm-4d575ba13ae59fdb6e19c216830def11b23ac081.zip |
Fix travis deploy condition and update to golangci-lint v1.16
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index f30c8b9c..c7066b4e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,7 @@ jobs: go: 1.12.x env: - GO111MODULE=on - - GOLANGCI_VERSION="v1.15.0" + - GOLANGCI_VERSION="v1.16.0" - stage: test # Run tests in a combination of Go environments. script: ./ci/test.sh @@ -42,7 +42,7 @@ jobs: deploy: on: all_branches: true - condition: env(TRAVIS_GO_VERSION) = 1.12.x AND env(GO111MODULE) = on + condition: $TRAVIS_GO_VERSION =~ ^1\.12 before_deploy: # Run the build script to generate the necessary binaries and images. - /bin/bash ci/bintray.sh |