Files
php-kmeans/makefile
2021-09-21 03:23:23 +02:00

32 lines
762 B
Makefile

# -----------------------------------------------------------------------------
# Code Quality
# -----------------------------------------------------------------------------
qa: phplint phpcs phpstan
QA_PATHS = src/ tests/
QA_STANDARD = psr12
phplint:
find $(QA_PATHS) -name "*.php" -print0 | xargs -0 -n1 -P8 php -l > /dev/null
phpstan:
vendor/bin/phpstan analyse $(QA_PATHS)
phpcs:
vendor/bin/phpcs --standard=$(QA_STANDARD) $(QA_PATHS)
phpcbf:
vendor/bin/phpcbf --standard=$(QA_STANDARD) $(QA_PATHS)
todolist:
git grep -C2 -p -E '[@]todo'
# -----------------------------------------------------------------------------
# Tests
# -----------------------------------------------------------------------------
test:
vendor/bin/phpunit --colors