We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce28ac3 commit 55fd71bCopy full SHA for 55fd71b
.travis.yml
@@ -1,12 +1,21 @@
1
language: go
2
+sudo: false
3
+
4
go:
5
+ - 1.8
6
+ - 1.9
7
+ - 1.10
8
- tip
9
-install:
- - go get -u golang.org/x/tools/cmd/goimports
- - go get -u github.com/golang/lint/golint
10
+env:
11
+ global:
12
+ - secure: "qXGZbIMjPajPVfd/js8AeIIcCvglHAuxGC6rsf8+yQvHHNHwnoIBO5StLJqp9Wbx0HfZLb2PzZBE0jPItMA9pYZZv0jCRqb18veS6DEzeVRSZJscR7LB1W8lEW5HbOm2r3tjyJzPh9PsvzmYxSLlo8zN1k7LNIIDrZbjMst6O4Y="
13
14
+before_install:
15
+ - go get -t -v ./...
16
17
script:
18
- go test ./...
- - diff <(goimports -d .) <(printf "")
- - diff <(golint ./...) <(printf "")
19
20
+after_success:
21
+ - bash <(curl -s https://codecov.io/bash)
0 commit comments