Ensure composer deps are installed inside the CI container.

This commit is contained in:
Buster "Silver Eagle" Neece 2021-06-23 06:02:07 -05:00
parent 1a2a7b9bd7
commit 8659c2824d
No known key found for this signature in database
GPG Key ID: 6D9E12FF03411F4E
2 changed files with 5 additions and 1 deletions

View File

@ -122,7 +122,7 @@ jobs :
run : |
chmod 777 tests/_output/
chmod 777 tests/_support/_generated
docker-compose exec -T --user="azuracast" web composer run codeception-no-coverage
docker-compose exec -T --user="azuracast" web composer run ci-test
- name : Stop all running containers.
run : |

View File

@ -133,6 +133,10 @@
"phpcbf": "phpcbf",
"codeception": "codecept run --no-interaction --coverage --coverage-xml --fail-fast",
"codeception-no-coverage": "codecept run --no-interaction",
"ci-test": [
"@composer install --no-interaction",
"@codeception-no-coverage"
],
"ci-import-locales": [
"bin/console locale:import"
]