mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-07 01:46:49 +08:00
12 lines
193 B
Bash
Executable File
12 lines
193 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
if ! command -v mypy &> /dev/null; then
|
|
poetry install -C api --with dev
|
|
fi
|
|
|
|
# run mypy checks
|
|
poetry run -C api \
|
|
python -m mypy --install-types --non-interactive .
|