dendrite/.travis.yml

35 lines
614 B
YAML
Raw Normal View History

2017-02-10 10:54:07 +00:00
language: go
go:
2017-05-18 10:38:09 +00:00
- 1.8
- 1.9
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
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
notifications:
webhooks:
urls:
- "https://scalar.vector.im/api/neb/services/hooks/dHJhdmlzLWNpLyU0MGtlZ2FuJTNBbWF0cml4Lm9yZy8lMjFhWmthbkFuV0VkeGNSSVFrV24lM0FtYXRyaXgub3Jn"
on_success: change # always|never|change
on_failure: always
on_start: never