use Docker Compose in Actions

This commit is contained in:
Dominik Liebler
2020-09-01 08:13:04 +02:00
parent 68e469fb5f
commit 58fdcc3430
2 changed files with 7 additions and 37 deletions

View File

@@ -2,8 +2,10 @@ FROM composer AS composer
WORKDIR /app
ADD . /app
RUN composer install \
&& ./vendor/bin/phpcs . \
&& ./vendor/bin/phpunit
&& ./vendor/bin/phpcs --ignore=_build . \
&& ./vendor/bin/phpunit \
&& ./vendor/bin/psalm --show-info=false \
&& ./check-refs-readmes
FROM python AS sphinx_build
WORKDIR /app