blob: 7ce458cf849a5018bf5c61b200e4782e37cc1bbf (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
export PHP_IMAGE=registry.fakecake.org/infra/php8.3-alpine3.20
docker run --rm -v $(pwd):/app -e API_URL=${API_URL} \
--workdir /app ${PHP_IMAGE} \
php83 -d memory_limit=-1 ./vendor/bin/phpunit --group integration
|