Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

Pin pydantic<2 and fastapi #769

Pin pydantic<2 and fastapi

Pin pydantic<2 and fastapi #769

Workflow file for this run

name: SQLite Storage CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: pip install -e .[test]
- name: Run tests
run: pytest tests -vv