dendrite/.travis.yml

35 lines
414 B
YAML
Raw Normal View History

2017-02-10 10:54:07 +00:00
language: go
go:
2017-12-12 10:25:24 +00:00
- 1.8.x
- 1.9.x
env:
- TEST_SUITE="lint"
- TEST_SUITE="unit-test"
- TEST_SUITE="integ-test"
sudo: false
# Use trusty for postgres 9.5 support
dist: trusty
addons:
postgresql: "9.5"
services:
- postgresql
cache:
directories:
- .downloads
2017-02-10 10:54:07 +00:00
install:
- go get github.com/constabulary/gb/...
2017-02-20 17:13:59 +00:00
script:
- ./scripts/travis-test.sh
2017-02-10 10:54:07 +00:00
# we only need the latest git commit
git:
depth: 1