Skip to content

build(deps): update uvicorn requirement from >=0.20 to >=0.49.0 #5

build(deps): update uvicorn requirement from >=0.20 to >=0.49.0

build(deps): update uvicorn requirement from >=0.20 to >=0.49.0 #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install -r requirements.txt
- run: pip install pytest ruff
- run: ruff check app/ || true
- run: pytest tests/ -v || echo "No tests yet"