build(check): enable mypy strict mode

This commit is contained in:
D. Bohdan 2023-07-22 21:31:38 +00:00
parent 583a9e559c
commit d8c12884f4
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#! /bin/sh
for cmd in black ruff mypy; do
poetry run "$cmd" remarshal.py tests/*.py
done
poetry run black remarshal.py tests/*.py
poetry run ruff remarshal.py tests/*.py
poetry run mypy --strict remarshal.py tests/*.py