mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-26 03:56:13 +00:00
17 lines
621 B
YAML
17 lines
621 B
YAML
services:
|
|
- chill/database:latest
|
|
|
|
before_script:
|
|
- composer config github-oauth.github.com $GITHUB_TOKEN
|
|
- composer install --no-interaction
|
|
- cp Test/Fixtures/App/app/config/parameters.gitlab-ci.yml Test/Fixtures/App/app/config/parameters.yml
|
|
# - php Test/Fixtures/App/app/console --env=test cache:warmup
|
|
- php Test/Fixtures/App/app/console doctrine:migrations:migrate --env=test --no-interaction
|
|
- php Test/Fixtures/App/app/console doctrine:fixtures:load --env=test --no-interaction
|
|
|
|
test:php-5.6:
|
|
stage: test
|
|
script: phpunit --testdox
|
|
test:php-7:
|
|
stage: test
|
|
script: phpunit --testdox |