mirror of
https://github.com/langgenius/dify.git
synced 2025-09-04 06:43:44 +00: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 .
|