Don't run tests against ancient versions on Travis (#438)

Don't run tests against ancient versions on Travis.
pull/488/head
Vytautas Šaltenis 2018-08-04 13:08:49 +03:00 committed by GitHub
parent 11635eb403
commit 34d6fae961
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 16 deletions

View File

@ -1,26 +1,13 @@
sudo: false
language: go
go:
- 1.5.4
- 1.6.2
- "1.9.x"
- "1.10.x"
- tip
matrix:
include:
- go: 1.2.2
script:
- go get -t -v ./...
- go test -v -race ./...
- go: 1.3.3
script:
- go get -t -v ./...
- go test -v -race ./...
- go: 1.4.3
script:
- go get -t -v ./...
- go test -v -race ./...
fast_finish: true
allow_failures:
- go: tip
fast_finish: true
install:
- # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
script: