From aadc117872ba92f28f98b464086c608deb604a9e Mon Sep 17 00:00:00 2001 From: Victor Baranov Date: Mon, 16 Feb 2026 20:24:22 +0300 Subject: [PATCH] chore: add install target in make --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5ae2014..2acda31 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: help activate test lint clean +.PHONY: help activate test lint install clean # Default target help: @@ -8,6 +8,7 @@ help: @echo " make activate - Create venv and install dev dependencies" @echo " make test - Run unit tests" @echo " make lint - Run linters/formatters" + @echo " make install - Install acp with pipx from current branch" @echo " make clean - Clean up test artifacts" # Setup dev environment @@ -27,6 +28,9 @@ lint: venv/bin/ruff check . venv/bin/yamllint -c .yamllint.yaml .github/ +install: + pipx install . --force + # Clean up test artifacts clean: @echo "Cleaning up test artifacts..."