Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: help activate test lint clean
.PHONY: help activate test lint install clean

# Default target
help:
Expand All @@ -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
Expand All @@ -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..."
Expand Down