ipld-eth-server/.travis.yml
Eric Meyer 0a16e402bb Add BlockchainDBObserver
* First code that interacts
2017-10-25 15:57:05 -05:00

17 lines
461 B
YAML

dist: trusty
sudo: required
language: go
go:
- 1.9
services:
- postgresql
before_script:
- go get -u -d github.com/mattes/migrate/cli github.com/lib/pq
- go build -tags 'postgres' -o /usr/local/bin/migrate github.com/mattes/migrate/cli
- psql -c 'create database vulcanize;' -U postgres
- migrate -database 'postgresql://localhost:5432/vulcanize?sslmode=disable' -path ./migrations up
script:
- go test -v ./core/...
notifications:
email: false