Skip to content

Bump pydantic from 2.7.1 to 2.7.4 #895

Bump pydantic from 2.7.1 to 2.7.4

Bump pydantic from 2.7.1 to 2.7.4 #895

Workflow file for this run

name: Python CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
unittest:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: Whist-Team/actions/setup-poetry@v2
with:
python-version: ${{ matrix.python-version }}
- name: 'Unittest with pytest & coverage'
uses: Whist-Team/actions/test-cov@v2
with:
package: whist_server
token: ${{ secrets.CODECOV_TOKEN }}
integrationtest:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.9', '3.10', '3.11' ]
mongodb-version: [ '4.4', '5.0', '6.0' ]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: Whist-Team/actions/setup-poetry@v2
with:
python-version: ${{ matrix.python-version }}
- name: Start MongoDB
uses: supercharge/mongodb-github-action@v1
with:
mongodb-version: ${{ matrix.mongodb-version }}
- name: Integrationtest with pytest
uses: Whist-Team/actions/test-cov@v2
with:
package: whist_server
token: ${{ secrets.CODECOV_TOKEN }}
test-type: integtest