dendrite/.travis.yml
Benedikt Bongartz b780297714
Bump to version 1.11 this is needed to use go mod.
Signed-off-by: <Benedikt Bongartz benne@klimlive.de>
2019-05-18 03:37:45 +02:00

35 lines
427 B
YAML

language: go
go:
- 1.11.x
- 1.12.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 -u -v github.com/alecthomas/gometalinter/
script:
- ./scripts/travis-test.sh
# we only need the latest git commit
git:
depth: 1