summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Hill <[email protected]>2017-08-29 15:49:58 -0400
committerDavid Hill <[email protected]>2017-08-29 15:53:20 -0400
commita476722483882dd40b8111f0eb64e1d7f43f56e4 (patch)
tree7f6c91fb1c74de0dd2411412f84440071d7ea1a2
parentadab96458c51a58dc1783b3335dcce5461522e75 (diff)
travis: test against go 1.9
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 1bd2340..19946dc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,6 +3,7 @@ go:
- 1.6.x
- 1.7.x
- 1.8.x
+ - 1.9.x
sudo: false
install:
- go get -v github.com/alecthomas/gometalinter
@@ -18,7 +19,7 @@ script:
--enable=unconvert
--deadline=4m ./spew | tee /dev/stderr)"
- go test -v -race -tags safe ./spew
- - go test -v -race -tags testcgo ./spew -covermode=count -coverprofile=profile.cov
+ - go test -v -race -tags testcgo ./spew -covermode=atomic -coverprofile=profile.cov
after_success:
- go get -v github.com/mattn/goveralls
- goveralls -coverprofile=profile.cov -service=travis-ci