Skip to content

Update dependency fastapi to v0.115.4 #20

Update dependency fastapi to v0.115.4

Update dependency fastapi to v0.115.4 #20

Workflow file for this run

name: CI
on:
workflow_dispatch: { }
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version-file: 'pyproject.toml'
- name: Run Tests
run: |
pip install -r requirements.txt
python3 -m venv .venv
source .venv/bin/activate
poetry install --with test
pytest tests