Skip to content

Commit 159ff5a

Browse files
authored
Added a just recipe for mypy (#14)
* Added a just recipe for mypy * Use direct positional args instead of environment variable
1 parent c4d383b commit 159ff5a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

justfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ install:
1717
test:
1818
tox run -m testsuite
1919

20+
# Type check the project with mypy.
21+
mypy:
22+
tox -e mypy-py3.12 -- ./src
23+
2024
# Rebuild the project's documentation locally (at ./`build`).
2125
docs:
2226
tox -e docs

0 commit comments

Comments
 (0)