Skip to content

Bump fastapi from 0.105.0 to 0.112.0 #77

Bump fastapi from 0.105.0 to 0.112.0

Bump fastapi from 0.105.0 to 0.112.0 #77

Workflow file for this run

name: Unit tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
name: Set up Python
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Lint with ruff
run: |
ruff .
- name: Test with pytest
run: |
PYTHONPATH=`pwd` pytest --cache-clear --cov=. tests