Skip to content

build(deps): update fastapi requirement from >=0.100 to >=0.138.1 #15

build(deps): update fastapi requirement from >=0.100 to >=0.138.1

build(deps): update fastapi requirement from >=0.100 to >=0.138.1 #15

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"