From e2d338dca1bfdd7264723c40572226d6051d8ba2 Mon Sep 17 00:00:00 2001 From: Adrian Macneil Date: Mon, 30 Nov 2015 18:39:40 -0800 Subject: [PATCH] Enable Travis CI --- .travis.yml | 9 +++++++++ README.md | 2 ++ 2 files changed, 11 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4237c82 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +sudo: required +services: + - docker +install: + - docker-compose up -d + - docker-compose run dbmate go version +script: + - make lint + - make test diff --git a/README.md b/README.md index 7842e4a..1fe753f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # 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. ## Features