File tree Expand file tree Collapse file tree 2 files changed +26
-13
lines changed Expand file tree Collapse file tree 2 files changed +26
-13
lines changed Original file line number Diff line number Diff line change 1
1
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
3
27
4
28
before_install :
5
29
- eval "$(curl -Ss https://raw.githubusercontent.com/neovim/bot-ci/master/scripts/travis-setup.sh) nightly-x64"
6
30
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
-
18
31
script :
19
32
- go get -t -v ./...
20
33
- diff -u <(echo -n) <(gofmt -d .)
Original file line number Diff line number Diff line change 1
1
module github.com/neovim/go-client
2
2
3
- go 1.11
3
+ go 1.12
You can’t perform that action at this time.
0 commit comments