mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-03 11:39:28 -05:00
10 lines
163 B
Bash
Executable File
10 lines
163 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
mypy fastapi
|
|
ruff fastapi tests docs_src scripts
|
|
black fastapi tests --check
|
|
isort fastapi tests docs_src scripts --check-only
|