mirror of
https://github.com/fastapi/fastapi.git
synced 2025-12-23 22:29:34 -05:00
9 lines
125 B
Bash
Executable File
9 lines
125 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
mypy fastapi
|
|
ruff check fastapi tests docs_src scripts
|
|
ruff format fastapi tests --check
|