forked from composer/packagist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
34 lines (25 loc) · 788 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
language: php
sudo: false
env:
global:
secure: "ejwL5+8AWrlcno3bSOfLNgNEGe6Kdegk19dr/It4QCZDw9Vs5nmuUq3e7sZ0+CSLVoo5q3L1Zs0YbkDdgkFA8Z2zWyhWxNjIWx+qb1aDh7ffSSileVRiw8ReQ14GiXxGTi0V5zR2zNwY5KdJNor0CsV8hOgZmFz6/qEUzXWY9Kw="
cache:
directories:
- $HOME/.composer/cache
services:
- redis-server
php:
- 7.0
matrix:
fast_finish: true
before_script:
- cp app/config/parameters.yml.dist app/config/parameters.yml
- 'echo " github.client_id: $GH_CLIENT_ID" >> app/config/parameters.yml'
- 'echo " github.client_secret: $GH_CLIENT_SECRET" >> app/config/parameters.yml'
- composer install
- app/console doctrine:database:create --env=test -n
- app/console doctrine:schema:create --env=test -n
script:
- vendor/bin/phpunit
git:
depth: 5