This repository was archived by the owner on Oct 28, 2025. It is now read-only.
Bump uvicorn from 0.37.0 to 0.38.0 (#113) #366
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Codestyle | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| codestyle: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2.3.4 | |
| - name: Set up Python 3.9 | |
| uses: actions/setup-python@v2.2.2 | |
| 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/ |