Skip to content

Commit 1bdd152

Browse files
authored
Add the Travis script to explicitly test intervening Go versions (#111)
1 parent 01193de commit 1bdd152

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.travis.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,21 @@ language: go
33
matrix:
44
include:
55
- go: 1.8.x
6-
script: go test -v -race ./...
7-
- go: 1.x
6+
script:
7+
- go test -v -race ./...
8+
- go: 1.9.x
9+
script:
10+
- go test -v -race ./...
11+
- go: 1.10.x
12+
script:
13+
- go test -v -race ./...
14+
- go: 1.11.x
815
script:
916
- diff -u <(echo -n) <(gofmt -d .)
1017
- go test -v -race ./...
1118
- go: master
12-
script: go test -v -race ./...
19+
script:
20+
- go test -v -race ./...
1321
allow_failures:
1422
- go: master
1523
fast_finish: true

0 commit comments

Comments
 (0)