Skip to content

Fix | August 2023

Fix | August 2023 #656

name: Tests
on: [ pull_request ]
jobs:
run-tests:
strategy:
fail-fast: false
matrix:
python-version: [ 3.7, 3.8, 3.9, 3.10.6, 3.11 ]
mongodb-version: [ 4.4, 5.0 ]
pydantic-version: [ 1.10.11, 2.0 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Start MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
mongodb-replica-set: test-rs
- name: install pydantic
run: pip install pydantic==${{ matrix.pydantic-version }}
- name: install dependencies
run: pip install .[test]
- name: run tests
run: pytest