Bump greenlet from 3.2.0 to 3.2.1 #1091
Workflow file for this run
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@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Install Dependencies | |
run: | | |
pip install --upgrade pip | |
pip install black mypy flake8 types-pyyaml types-toml | |
- name: Check code formatting with black | |
run: black -l 120 . --diff --check | |
- name: Check code with flake8 | |
run: flake8 fastapi_framework tests | |
- name: Check Typing with MyPy | |
run: mypy fastapi_framework |