7 lines
129 B
Bash
Executable file
7 lines
129 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
# run mypy checks
|
|
uv run --directory api --group dev \
|
|
python -m mypy --install-types --non-interactive .
|