mirror of
https://github.com/n8n-io/n8n
synced 2026-05-10 13:32:23 +02:00
21 lines
222 B
Makefile
21 lines
222 B
Makefile
run:
|
|
uv run python -m src.main
|
|
|
|
sync:
|
|
uv sync
|
|
|
|
lint:
|
|
uv run ruff check
|
|
|
|
lintfix:
|
|
uv run ruff check --fix
|
|
|
|
format:
|
|
uv run ruff format
|
|
|
|
test:
|
|
@echo "No tests yet"
|
|
|
|
typecheck:
|
|
uv run ty check src/
|