mirror of
https://github.com/Intervention/image.git
synced 2025-01-16 19:58:14 +01:00
16 lines
375 B
YAML
16 lines
375 B
YAML
version: '3'
|
|
|
|
services:
|
|
tests:
|
|
build: ./
|
|
working_dir: /project
|
|
command: bash -c "composer install && ./vendor/bin/phpunit -vvv --filter=InputHandlerTest"
|
|
volumes:
|
|
- ./:/project
|
|
analysis:
|
|
build: ./
|
|
working_dir: /project
|
|
command: bash -c "composer install && ./vendor/bin/phpstan analyze --level=4 ./src"
|
|
volumes:
|
|
- ./:/project
|