forked from yihong0618/running_page
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (23 loc) · 633 Bytes
/
Makefile
File metadata and controls
31 lines (23 loc) · 633 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
31
.PHONY: help tui test lint check format build ci
help:
@echo "Available targets:"
@echo " make tui - Run the Textual TUI"
@echo " make test - Run Python tests"
@echo " make lint - Run frontend lint"
@echo " make check - Run frontend format check"
@echo " make format - Format frontend files"
@echo " make build - Build frontend assets"
@echo " make ci - Run test, lint, check, and build"
tui:
uv run run_page
test:
uv run python -m unittest discover -s . -p 'test_*.py'
lint:
pnpm run lint
check:
pnpm run check
format:
pnpm run format
build:
pnpm run build
ci: test lint check build