Skip to content

Commit f40e3d9

Browse files
committed
go.mod,travis: add go 1.14.x version and drop 1.11.x version
1 parent c096c30 commit f40e3d9

File tree

2 files changed

+26
-13
lines changed

2 files changed

+26
-13
lines changed

.travis.yml

Lines changed: 25 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,33 @@
11
language: go
2-
sudo: false
2+
os: linux
3+
dist: xenial
4+
5+
git:
6+
depth: 2
7+
submodules: false
8+
9+
go:
10+
- 1.12.x
11+
- 1.13.x
12+
- 1.14.x
13+
- tip
14+
15+
env:
16+
global:
17+
- CC=clang
18+
- CXX=clang++
19+
- GO111MODULE=on
20+
21+
before_cache:
22+
- go mod download
23+
24+
cache:
25+
directories:
26+
- $GOPATH/pkg/mod
327

428
before_install:
529
- eval "$(curl -Ss https://raw.githubusercontent.com/neovim/bot-ci/master/scripts/travis-setup.sh) nightly-x64"
630

7-
matrix:
8-
include:
9-
- go: 1.11.x
10-
env: GO111MODULE=on
11-
- go: 1.12.x
12-
env: GO111MODULE=on
13-
- go: 1.13.x
14-
env: GO111MODULE=on
15-
- go: tip
16-
env: GO111MODULE=on
17-
1831
script:
1932
- go get -t -v ./...
2033
- diff -u <(echo -n) <(gofmt -d .)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/neovim/go-client
22

3-
go 1.11
3+
go 1.12

0 commit comments

Comments
 (0)