summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2019-11-02 14:59:14 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2019-11-02 14:59:22 +0900
commit33f89a08f32634d57cb145214e4647534433ac6c (patch)
treefec4fa0c21b39138b7bc616779358622db565a90
parent11645e1fac26f67b7690d618003e89b5ffcb9680 (diff)
Build with Go 1.13
-rw-r--r--.travis.yml4
-rw-r--r--go.mod2
2 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 8608ccd6..650de9d7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,11 +16,11 @@ env:
jobs:
include:
- stage: unittest
- go: "1.11.x"
+ go: "1.13.x"
script: make && make test
- stage: cli
- go: "1.11.x"
+ go: "1.13.x"
rvm: "2.5"
script: |
make install && ./install --all && tmux new "ruby test/test_go.rb > out && touch ok" && cat out && [ -e ok ]
diff --git a/go.mod b/go.mod
index 79ffea1e..448e1c3e 100644
--- a/go.mod
+++ b/go.mod
@@ -15,3 +15,5 @@ require (
golang.org/x/sys v0.0.0-20190509141414-a5b02f93d862 // indirect
golang.org/x/text v0.0.0-20170530162606-4ee4af566555 // indirect
)
+
+go 1.13