mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
feat(core): Set up native Python task runner project (no-changelog) (#18257)
This commit is contained in:
20
packages/@n8n/task-runner-python/justfile
Normal file
20
packages/@n8n/task-runner-python/justfile
Normal file
@@ -0,0 +1,20 @@
|
||||
run:
|
||||
uv run python src/main.py
|
||||
|
||||
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/
|
||||
Reference in New Issue
Block a user