pgstorex/.travis.yml

23 lines
289 B
YAML
Raw Normal View History

language: go
go:
- 1.5
- 1.6
- tip
script:
- make get-deps
- make metalint
- make check
env:
- PGSTORE_TEST_CONN="postgres://postgres@127.0.0.1/test?sslmode=disable"
before_script:
- psql -c 'create database test;' -U postgres
addons:
postgresql: "9.4"
sudo: false