Skip to content

Commit

Permalink
Update travis CI to support go1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Kuhnhausen committed Sep 13, 2018
1 parent 427452d commit 1d0d3d2
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ sudo: required
services:
- docker

go:
- tip
- 1.9
install:
- go get -d -v ./...
- go build
matrix:
include:
- go: "1.10.x"
script: go test -v ./...
- go: "1.11.x"
script: go test -v -mod=vendor ./...
env:
- GO111MODULE=on
install: true
script:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
Expand All @@ -22,6 +25,3 @@ before_install:
- sudo pip install codecov
after_success:
codecov
notifications:
email:
- [email protected]

0 comments on commit 1d0d3d2

Please sign in to comment.