12345678910111213141516171819202122232425262728293031323334 |
- language: php
- sudo: false
- env:
- global:
- secure: E9/Y2vJv4GGGdjRZUJuL31q79C2dbgL1yNcclE4MIPXrPWe5f0LuQMwCGbaGN+b6u/VX6YQL6OcFt+VsxL5e439EoYMMY+MmUeDnq5jRzPOVZqgXlNZAxh4KzoNh3Q2nXp6uSr+yaNCFedcx1Os7n5CoLwqji+TATsTPZ1EEDqI=
- 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
|