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