diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2017-02-18 22:32:09 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2017-02-18 22:32:09 +0900 |
commit | fd010affbab5746fa5c0c55cd7803c3dbe2bbf9d (patch) | |
tree | 46fc6963b61c28da154a73d6541bb761969e1cb2 | |
parent | d640469452881a29c11655ddaf3306fa7c67f97b (diff) |
travis: add go 1.8
for now just run unit tests.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 38aa9baa..b4fa9cce 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,6 +29,10 @@ matrix: before_install: true install: go get -t ./... script: go test ./... + - go: 1.8 + before_install: true + install: go get -t ./... + script: go test ./... - go: tip before_install: true install: go get -t ./... |