diff --git a/script py. b/script py. new file mode 100644 index 0000000..a31a778 --- /dev/null +++ b/script py. @@ -0,0 +1,12 @@ +AI +DL +ML +HI +run: isort --check-only --profile black . || true + - run: pip install -r requirements.txt || pip install --editable . || true + - run: mkdir --parents --verbose .mypy_cache + - run: mypy --ignore-missing-imports --install-types --non-interactive . || true + - run: pytest . || pytest --doctest-modules . + - run: shopt -s globstar && pyupgrade --py36-plus **/*.py || true + - run: safety check + name: lint_python