From fd0ca0e6d616adfae800f40a94688114ea01cda6 Mon Sep 17 00:00:00 2001 From: Drasko DRASKOVIC Date: Tue, 20 Sep 2016 21:28:33 +0200 Subject: [PATCH] Add Travis Signed-off-by: Drasko DRASKOVIC --- .travis.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..92cbc36b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +language: go + +go: + - 1.6 + - tip + +# Sudo is required for docker +sudo: required + +# Enable docker +services: + - docker + +# In Travis, we need to bind to 127.0.0.1 in order to get a working connection. This environment variable +# tells dockertest to do that. +env: + - DOCKERTEST_BIND_LOCALHOST=true +