From 879cc40d38f90383ef011317a98a608c7d373499 Mon Sep 17 00:00:00 2001 From: John Weldon Date: Fri, 11 Sep 2015 18:30:08 -0700 Subject: [PATCH] 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. --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d2198a1..1fd0bd8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 ./... \ No newline at end of file +script: go test -p 1 ./...