mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-30 04:34:34 +00:00
14 lines
182 B
Makefile
14 lines
182 B
Makefile
install:
|
|
pip install uv
|
|
uv pip install -e .
|
|
|
|
install_dev: install
|
|
uv pip install -e .[test]
|
|
|
|
lint:
|
|
ruff format .
|
|
ruff check --fix
|
|
|
|
lint_check:
|
|
ruff check
|
|
ruff format --check
|