-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (21 loc) · 675 Bytes
/
Makefile
File metadata and controls
30 lines (21 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
.PHONY: install test lint format snapshot agents pack pack-check release
install:
python3 -m venv .venv
. .venv/bin/activate && python -m pip install -U pip
. .venv/bin/activate && python -m pip install -e ".[dev]"
test:
. .venv/bin/activate && pytest -q
lint:
. .venv/bin/activate && ruff check .
format:
. .venv/bin/activate && ruff format .
snapshot:
. .venv/bin/activate && python scripts/snapshot.py
agents:
. .venv/bin/activate && agentsgen update --autodetect
pack:
. .venv/bin/activate && agentsgen pack --autodetect
pack-check:
. .venv/bin/activate && agentsgen pack --autodetect --check
release:
@echo "Usage: ./scripts/release.sh vX.Y.Z A|B|C"