mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-05 08:16:32 +00:00
12 lines
195 B
Makefile
12 lines
195 B
Makefile
.PHONY: default test clean all
|
|
default: test
|
|
|
|
# Installs pre-commit hooks
|
|
.PHONY: install-hooks
|
|
install-hooks:
|
|
pre-commit install --install-hooks
|
|
|
|
.PHONY: test
|
|
test:
|
|
pre-commit run --all-files
|