mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-06-01 07:47:45 +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 .
|