Skip to content

fix(types): add complete type annotations for mypy strict mode compli… #7

fix(types): add complete type annotations for mypy strict mode compli…

fix(types): add complete type annotations for mypy strict mode compli… #7

Workflow file for this run

name: Code Quality
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Format check with ruff
run: ruff format --check fastapi_crons tests
- name: Lint with ruff
run: ruff check fastapi_crons tests --show-fixes
- name: Type check with mypy
run: mypy fastapi_crons --show-error-codes