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 3d1e2b1 commit 24ab9c7Copy full SHA for 24ab9c7
.travis.yml
@@ -5,21 +5,29 @@ dist: trusty
5
os:
6
- linux
7
8
-go:
9
- - 1.8.x
10
- - 1.9.x
11
- - 1.10.x
12
- - master
+env:
+ - TAGS="-tags travis"
13
14
matrix:
15
fast_finish: true
16
allow_failures:
17
- go: master
+ include:
+ - go: 1.9.x
+ env:
18
19
+ - go: 1.10.x
20
21
22
+ - COVERAGE="-cover"
23
+ - go: master
24
25
26
27
script:
28
- go install -v $TAGS ./...
- - GOARCH=386 go test ./...
- - GOARCH=amd64 go run ./ci/run-tests.go -race -cover
29
+ - GOARCH=386 go test $TAGS ./...
30
+ - GOARCH=amd64 go run ./ci/run-tests.go -race $TAGS $COVERAGE
31
32
after_success:
33
- bash <(curl -s https://codecov.io/bash)
0 commit comments