Skip to content

Commit 5f096ae

Browse files
zcheejustinmk
authored andcommitted
Go module #52
* module: add go.mod * ci: add GO111MODULE env to 1.12.x and tip * module: remove go 1.12 mark
1 parent 767661b commit 5f096ae

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

.travis.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@ sudo: false
44
before_install:
55
- eval "$(curl -Ss https://raw.githubusercontent.com/neovim/bot-ci/master/scripts/travis-setup.sh) nightly-x64"
66

7-
go:
8-
- 1.7.x
9-
- 1.8.x
10-
- 1.9.x
11-
- 1.10.x
12-
- 1.11.x
13-
- 1.12.x
14-
- tip
7+
matrix:
8+
include:
9+
- go: 1.7.x
10+
- go: 1.8.x
11+
- go: 1.9.x
12+
- go: 1.10.x
13+
- go: 1.11.x
14+
- go: 1.12.x
15+
env: GO111MODULE=on
16+
- go: tip
17+
env: GO111MODULE=on
1518

1619
script:
1720
- go get -t -v ./...

go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module github.com/neovim/go-client

0 commit comments

Comments
 (0)