mirror of https://github.com/status-im/migrate.git
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:
parent
68a658aff4
commit
879cc40d38
|
@ -1,8 +1,9 @@
|
||||||
language: go
|
language: go
|
||||||
|
|
||||||
go:
|
go:
|
||||||
- 1.2
|
|
||||||
- 1.3
|
- 1.3
|
||||||
|
- 1.4
|
||||||
|
- 1.5
|
||||||
- tip
|
- tip
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
|
@ -17,4 +18,4 @@ before_script:
|
||||||
- psql -c 'create database migratetest;' -U postgres
|
- psql -c 'create database migratetest;' -U postgres
|
||||||
- mysql -e 'create database migratetest;'
|
- mysql -e 'create database migratetest;'
|
||||||
|
|
||||||
script: go test -p 1 ./...
|
script: go test -p 1 ./...
|
||||||
|
|
Loading…
Reference in New Issue