Fix travis build file to match reality

This project depends on github.com/gocql/gocql, which does not support
go 1.2.

Update the .travis.yml file to match that reality.

Add go 1.4 and 1.5 to the test matrix.
This commit is contained in:
John Weldon 2015-09-11 18:30:08 -07:00
parent 68a658aff4
commit 879cc40d38
1 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,9 @@
language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- tip
addons:
@ -17,4 +18,4 @@ before_script:
- psql -c 'create database migratetest;' -U postgres
- mysql -e 'create database migratetest;'
script: go test -p 1 ./...
script: go test -p 1 ./...