mirror of
https://github.com/status-im/migrate.git
synced 2025-02-24 00:38:07 +00:00
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.
22 lines
397 B
YAML
22 lines
397 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.3
|
|
- 1.4
|
|
- 1.5
|
|
- tip
|
|
|
|
addons:
|
|
postgresql: "9.3"
|
|
|
|
services:
|
|
- cassandra
|
|
|
|
before_script:
|
|
- >
|
|
/usr/local/cassandra/bin/cqlsh -e "CREATE KEYSPACE migratetest WITH REPLICATION = {'class': 'SimpleStrategy', 'replication_factor' : 1};"
|
|
- psql -c 'create database migratetest;' -U postgres
|
|
- mysql -e 'create database migratetest;'
|
|
|
|
script: go test -p 1 ./...
|