Enable Travis CI

This commit is contained in:
Adrian Macneil 2015-11-30 18:39:40 -08:00
parent edb027f6e9
commit e2d338dca1
2 changed files with 11 additions and 0 deletions

9
.travis.yml Normal file
View file

@ -0,0 +1,9 @@
sudo: required
services:
- docker
install:
- docker-compose up -d
- docker-compose run dbmate go version
script:
- make lint
- make test

View file

@ -1,5 +1,7 @@
# Dbmate # Dbmate
[![Build Status](https://travis-ci.org/adrianmacneil/dbmate.svg?branch=master)](https://travis-ci.org/adrianmacneil/dbmate)
Dbmate is a database migration tool, to keep your database schema in sync across multiple developers and your production servers. It is a standalone command line tool, which can be used with any language or framework. This is especially helpful if you are writing many services in different languages, and want to maintain some sanity with consistent development tools. Dbmate is a database migration tool, to keep your database schema in sync across multiple developers and your production servers. It is a standalone command line tool, which can be used with any language or framework. This is especially helpful if you are writing many services in different languages, and want to maintain some sanity with consistent development tools.
## Features ## Features