We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d30f3a0 commit 96cfd48Copy full SHA for 96cfd48
.travis.yml
@@ -3,17 +3,17 @@ sudo: false
3
4
matrix:
5
include:
6
- - go: "1.9"
7
- - go: "1.10"
8
- - go: "1.11"
+ - go: 1.9.x
+ - go: 1.10.x
+ - go: 1.11.x
9
env:
10
- GO111MODULE=off
11
- VET=1
12
13
env: GO111MODULE=on
14
- - go: "1.12"
+ - go: 1.12.x
15
env: GO111MODULE=off
16
17
18
- go: tip
19
grpcurl.go
@@ -32,6 +32,7 @@ import (
32
"google.golang.org/grpc"
33
"google.golang.org/grpc/credentials"
34
"google.golang.org/grpc/metadata"
35
+ _ "google.golang.org/grpc/xds/experimental"
36
)
37
38
// ListServices uses the given descriptor source to return a sorted list of fully-qualified
0 commit comments