Skip to content

Update fastapi requirement from ~=0.112.0 to ~=0.112.1 #21

Update fastapi requirement from ~=0.112.0 to ~=0.112.1

Update fastapi requirement from ~=0.112.0 to ~=0.112.1 #21

Workflow file for this run

name: Lint
on:
push:
pull_request:
workflow_call:
workflow_dispatch:
concurrency: lint-${{ github.sha }}
jobs:
lint:
runs-on: ubuntu-latest
env:
PYTHON_VERSION: "3.11"
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
- name: Run pre-commit hooks
uses: pre-commit/[email protected]