Skip to content

build(deps-dev): update pytest requirement from >=7.1.2,<8.0.0 to >=7.1.2,<9.0.0 #43

build(deps-dev): update pytest requirement from >=7.1.2,<8.0.0 to >=7.1.2,<9.0.0

build(deps-dev): update pytest requirement from >=7.1.2,<8.0.0 to >=7.1.2,<9.0.0 #43

Workflow file for this run

name: "LINT: Run ruff & mypy"
on:
push:
pull_request:
schedule:
- cron: '0 7 * * 1'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade poetry
poetry install
- name: Lint with ruff & mypy
run: |
poetry run ruff check fastapi_module_loader tests
poetry run mypy fastapi_module_loader