mirror of
https://github.com/archtechx/virtualcolumn.git
synced 2025-12-12 19:04:02 +00:00
47 lines
1.1 KiB
Bash
Executable file
47 lines
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
offer_run() {
|
|
read -p "For more output, run $1. Run it now (Y/n)? " run
|
|
|
|
case ${run:0:1} in
|
|
n|N )
|
|
exit 1
|
|
;;
|
|
* )
|
|
$1
|
|
;;
|
|
esac
|
|
|
|
exit 1
|
|
}
|
|
|
|
if (php-cs-fixer fix --dry-run --config=.php-cs-fixer.php > /dev/null 2>/dev/null); then
|
|
echo '✅ php-cs-fixer OK'
|
|
else
|
|
read -p "⚠️ php-cs-fixer found issues. Fix (Y/n)? " fix
|
|
case ${fix:0:1} in
|
|
n|N )
|
|
echo '❌ php-cs-fixer FAIL'
|
|
offer_run 'php-cs-fixer fix --config=.php-cs-fixer.php'
|
|
;;
|
|
* )
|
|
if (php-cs-fixer fix --config=.php-cs-fixer.php > /dev/null 2>/dev/null); then
|
|
echo '✅ php-cs-fixer OK'
|
|
else
|
|
echo '❌ php-cs-fixer FAIL'
|
|
offer_run 'php-cs-fixer fix --config=.php-cs-fixer.php'
|
|
fi
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
if (./vendor/bin/phpunit > /dev/null 2>/dev/null); then
|
|
echo '✅ PHPUnit OK'
|
|
else
|
|
echo '❌ PHPUnit FAIL'
|
|
offer_run './vendor/bin/phpunit'
|
|
fi
|
|
|
|
echo '=================='
|
|
echo '✅ Everything OK'
|