From 3b5132bf2cd6b345989a492bf1525d4fef928d44 Mon Sep 17 00:00:00 2001 From: Shlomi Noach Date: Sun, 2 Apr 2017 10:43:45 +0300 Subject: [PATCH] supporting TravisCI --- .travis.yml | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 01078c0..079e425 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,20 @@ +# http://docs.travis-ci.com/user/languages/go/ language: go -go: - - 1.6 - - tip +go: 1.8 -script: ./test.sh +os: + - linux + +env: +- MYSQL_USER=root + +before_install: + - mysql -e 'CREATE DATABASE IF NOT EXISTS test;' + +install: true + +script: script/cibuild + +notifications: + email: false