Skip to content

Commit 0279a33

Browse files
committed
fix(justfile): update type-check command to include src and tests
1 parent 529662d commit 0279a33

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ lint-fix:
2424

2525
# Run type checker
2626
type-check:
27-
uv run ty check
27+
uv run ty check src tests
2828

2929
# Run format, lint, and type-check
3030
check: format lint type-check
@@ -50,7 +50,7 @@ ci:
5050
uv run ruff format --check .
5151
uv run ruff check .
5252
rumdl check .
53-
uv run ty check
53+
uv run ty check src tests
5454
uv run pytest
5555

5656
# Build and publish to PyPI

0 commit comments

Comments
 (0)