Skip to content

Update dependency fastapi to v0.111.1 #48

Update dependency fastapi to v0.111.1

Update dependency fastapi to v0.111.1 #48

Workflow file for this run

name: Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --with docs,tests
- name: Run tests
run: cd src & poetry run pytest