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