mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-30 20:56:03 +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
|