mirror of
https://github.com/fastapi/sqlmodel.git
synced 2025-10-27 19:47:12 +08:00
Co-authored-by: Motov Yurii <109919500+YuriiMotov@users.noreply.github.com> Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
10 lines
178 B
Bash
Executable File
10 lines
178 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
mypy sqlmodel
|
|
mypy tests/test_select_typing.py
|
|
ruff check sqlmodel tests docs_src scripts
|
|
ruff format sqlmodel tests docs_src scripts --check
|