danish-dynaword / makefile
KennethEnevoldsen's picture
added linting
c81d415 unverified
raw
history blame
362 Bytes
install:
@echo "--- 🚀 Installing project dependencies ---"
uv sync
test:
@echo "--- 🧪 Running tests ---"
uv run pytest tests/
bump-version:
@echo "--- 🚀 Bumping patch version ---"
uv run scripts/bump_version.py
lint:
@echo "--- 🧹 Running linters ---"
ruff format . # running ruff formatting
ruff check . --fix # running ruff linting