From 60dd1d1d2d81c92d9995a3f8b92adfbbd3795d68 Mon Sep 17 00:00:00 2001 From: Eric Meyer Date: Tue, 31 Oct 2017 09:03:13 -0500 Subject: [PATCH] Revert "Remove Travis" This reverts commit ae737c8ef2bd64ae5405a72a4aafabb410751b18. --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..ac077457 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +dist: trusty +language: go +go: + - 1.9 +services: + - postgresql +before_script: + - createdb vulcanize + - psql vulcanize < migrations/schema.sql +script: + - go test -v ./core/... +notifications: + email: false