mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
27 lines
477 B
YAML
27 lines
477 B
YAML
language: php
|
|
php:
|
|
- 5.5
|
|
- 5.6
|
|
- hhvm-nightly
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: hhvm-nightly
|
|
|
|
addons:
|
|
postgresql: "9.3"
|
|
|
|
before_script:
|
|
- psql -c 'create database test0;' -U postgres
|
|
- cp Tests/Fixtures/App/app/config/parameters.travis.yml Tests/Fixtures/App/app/config/parameters.yml
|
|
- ./console.sh doctrine:schema:create
|
|
|
|
install:
|
|
- composer install --dev
|
|
|
|
script: phpunit --coverage-text
|
|
|
|
notifications:
|
|
email:
|
|
- info@champs-libres.coop
|