Skip to content

Bump uvicorn from 0.32.0 to 0.32.1 #302

Bump uvicorn from 0.32.0 to 0.32.1

Bump uvicorn from 0.32.0 to 0.32.1 #302

Workflow file for this run

name: Codestyle
on:
- push
- pull_request
jobs:
codestyle:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Set up Python 3.9
uses: actions/[email protected]
with:
python-version: 3.9
- name: Install Dependencies
run: |
pip install --upgrade pip
pip install black mypy flake8
- name: Check code formatting with black
run: black -l 120 . --diff --check
- name: Check code with flake8
run: flake8 app/
- name: Check with MyPy
run: mypy app/