diff --git a/justfile b/justfile index 566685c..beeebe4 100644 --- a/justfile +++ b/justfile @@ -1,6 +1,9 @@ default: @just --list +setup: + uv sync + # run Textual's console console: uv run textual console @@ -27,3 +30,10 @@ lint-markdown: markdownlint-cli2 . lint: lint-python lint-markdown + +# remove artefacts from dist/ +clean: + rm dist/*.whl dist/*.tar.gz + +# ci: +# woodpecker-cli exec "whatever"