mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
20 lines
222 B
Makefile
20 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/
|