1
0
mirror of synced 2025-01-19 17:31:45 +03:00

9 lines
170 B
Bash
Raw Normal View History

#!/usr/bin/env bash
if [[ ${RUN_PHPCS} == 1 ]]; then
composer install
vendor/phpunit/phpunit/phpunit -c phpunit.xml.dist
else
phpunit -c phpunit.xml.dist
fi