Skip to content

Update uvicorn[standard] requirement from ~=0.49.0 to ~=0.52.0 (#181) #368

Update uvicorn[standard] requirement from ~=0.49.0 to ~=0.52.0 (#181)

Update uvicorn[standard] requirement from ~=0.49.0 to ~=0.52.0 (#181) #368

Workflow file for this run

name: Lint
on:
push:
pull_request:
workflow_call:
workflow_dispatch:
concurrency: lint-${{ github.sha }}
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
env:
PYTHON_VERSION: "3.11"
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v7
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install project dependencies
run: uv sync --all-groups --python ${{ env.PYTHON_VERSION }}
- name: Run hooks
uses: j178/prek-action@v2.0.6