dendrite/.travis.yml
Richard van der Hoff ebb8d5b268 fewer environments
2017-12-19 11:47:21 +00:00

34 lines
417 B
YAML

language: go
go:
# - 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
install:
- go get github.com/constabulary/gb/...
script:
- ./scripts/travis-test.sh
# we only need the latest git commit
git:
depth: 1