mirror of
https://github.com/langgenius/dify.git
synced 2025-09-08 08:37:40 +00:00
12 lines
193 B
Plaintext
12 lines
193 B
Plaintext
![]() |
#!/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 .
|