Skip to content

Commit 0df9285

Browse files
committed
Add basic Justfile
1 parent cad6722 commit 0df9285

2 files changed

Lines changed: 26 additions & 0 deletions

File tree

Justfile

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
default:
2+
@just --choose
3+
4+
setup:
5+
uv sync
6+
7+
build:
8+
uv build
9+
10+
test:
11+
uv run pytest
12+
13+
lint:
14+
uv run ruff check
15+
16+
format:
17+
uv run ruff format
18+
19+
check: lint test
20+
uv run ruff format --check
21+
22+
docs output="doc/html/":
23+
uv run --group doc sphinx-build doc/ doc/html/
24+
25+

doc/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
_build/
2+
html/

0 commit comments

Comments
 (0)