Skip to content

Commit

Permalink
Add .travis.yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
vbatoufflet committed May 19, 2017
1 parent e485715 commit 8b80176
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .travis.yml
@@ -0,0 +1,31 @@
---
language: go

go:
- 1.8

dist: trusty

services:
- postgresql
- mysql

env:
- TEST_PGSQL_USER=postgres TEST_MYSQL_USER=root

before_install:
- sudo apt-get -qq update
- sudo apt-get install -y librrd-dev

before_script:
- psql -c 'create database facette;' -U postgres
- mysql -e 'create database facette charset=utf8;'

script:
- make test

notifications:
email:
- dev@facette.io

# vim: ts=2 sw=2 et

0 comments on commit 8b80176

Please sign in to comment.