mirror of
https://github.com/PaiGramTeam/sqlmodel.git
synced 2024-11-22 07:08:06 +00:00
10 lines
170 B
Bash
10 lines
170 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
mypy sqlmodel
|
||
|
flake8 sqlmodel tests docs_src
|
||
|
black sqlmodel tests docs_src --check
|
||
|
isort sqlmodel tests docs_src scripts --check-only
|