danish-dynaword / makefile
KennethEnevoldsen's picture
Added overview table to the main readme
ef0f90a unverified
raw
history blame
497 Bytes
install:
@echo "--- 🚀 Installing project dependencies ---"
uv sync
test:
@echo "--- 🧪 Running tests ---"
uv run pytest src/tests/
lint:
@echo "--- 🧹 Running linters ---"
ruff format . # running ruff formatting
ruff check . --fix # running ruff linting
bump-version:
@echo "--- 🚀 Bumping patch version ---"
uv run src/bump_version.py
update-descriptive-statistics:
@echo "--- 🚀 Recomputing Descriptive statistics ---"
uv run src/update_descriptive_statistics.py