summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorEyal Posener <[email protected]>2018-09-09 17:48:54 +0300
committerGitHub <[email protected]>2018-09-09 17:48:54 +0300
commit217cfb65b2739a48779cbcf8692ac76ee3e62ae3 (patch)
treef3b7398f3a2363e9a9a4f37fe4540e45044073e6 /.travis.yml
parentdcda3199365ca2a5f24aea4c42aa56f6a197d117 (diff)
parentdcfd7da4e1804e7fa63d06a2071e68e8e347c40b (diff)
Merge pull request #68 from posener/go111
Add support for go1.11
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 3 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index c2798f8..2fae945 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,17 +1,16 @@
language: go
sudo: false
go:
+ - 1.11
+ - 1.10.x
- 1.9
- 1.8
before_install:
- go get -u -t ./...
- - go get -u gopkg.in/alecthomas/gometalinter.v1
- - gometalinter.v1 --install
script:
- - gometalinter.v1 --config metalinter.json ./...
- - ./test.sh
+ - GO111MODULE=on ./test.sh
after_success:
- bash <(curl -s https://codecov.io/bash)