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

18 lines
273 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:
- '5.6'
- '7.0'
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