This repository has been archived on 2024-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
calcifer/.travis.yml

26 lines
573 B
YAML
Raw Normal View History

2016-06-26 13:54:46 +02:00
language: php
2016-06-28 19:38:38 +02:00
2016-06-26 13:54:46 +02:00
php:
- '7.0'
2016-11-21 22:13:48 +01:00
- '7.1'
2016-06-28 19:38:38 +02:00
services:
- postgresql
2016-06-26 13:54:46 +02:00
install:
- composer install
2016-06-28 19:38:38 +02:00
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
- cp app/config/config_travis.yml app/config/config_test.yml
script: bin/phpunit --verbose -c app
2017-01-12 22:09:21 +01:00
notifications:
webhooks:
urls:
- "https://scalar.vector.im/api/neb/services/hooks/dHJhdmlzLWNpLyU0MDB4QUZGRSUzQW1hdHJpeC5vcmcvJTIxaWtsaVpGWGd0a1dWVW1FUmRQJTNBbWF0cml4Lm9yZw"
on_success: change # always|never|change
on_failure: always
on_start: never