nineskeletor/Makefile
Arnaud Fornerot 5f3cc51f5c
All checks were successful
Cadoles/nineskeletor/pipeline/pr-master This commit looks good
fix(continuous-integration): correction point phpstan de level 1
2022-09-23 15:34:07 +02:00

18 lines
498 B
Makefile

SHELL := /bin/bash
export PATH := $(HOME)/.symfony/bin:$(PATH)
deps:
wget https://get.symfony.com/cli/installer -O - | bash
symfony composer install
symfony composer install --working-dir=tools/php-cs-fixer
symfony composer install --working-dir=tools/phpstan
npm ci
phpstan:
symfony php tools/phpstan/vendor/bin/phpstan analyze ./src -l 1
php-cs-fixer:
tools/php-cs-fixer/symfony-php-cs-fixer.sh fix --verbose --show-progress=dots
install-git-hooks:
git config core.hooksPath .githooks