frostfs-sdk-java/Makefile
Bruk Ori 0e82c4433f
Some checks failed
Pre-commit checks / Pre-commit (pull_request) Failing after 4s
DCO / DCO (pull_request) Failing after 46s
test
2024-10-25 16:43:50 +03:00

22 lines
No EOL
396 B
Makefile
Executable file

#!/usr/bin/make -f
SHELL=bash
include help.mk
.PHONY: verify
# Regenerate documentation for proto files:
verify:
mvn clean verify
# Activate pre-commit hooks
pre-commit:
pre-commit install --hook-type pre-commit
# Deactivate pre-commit hooks
unpre-commit:
pre-commit uninstall --hook-type pre-commit
# Run pre-commit hooks
pre-commit-run:
@pre-commit run --all-files --hook-stage manual