AspireSync/Makefile
2024-11-10 14:22:21 -07:00

21 lines
273 B
Makefile

COMPOSER = composer
#COMPOSER = docker compose run -it --rm aspiresync composer
build:
$(COMPOSER) install
test:
$(COMPOSER) run test
check: check-style test
fix: fix-style
check-style:
$(COMPOSER) run style:check
fix-style:
$(COMPOSER) run style:fix
.PHONY: *