Skip to content

Bump setuptools from 74.1.1 to 74.1.2 #945

Bump setuptools from 74.1.1 to 74.1.2

Bump setuptools from 74.1.1 to 74.1.2 #945

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.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: 'unit test with pytest'
run: 'poetry run python -m pytest -m "not integtest"'
integrationtest:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.10', '3.11', '3.12' ]
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: 'integration test with pytest'
run: 'poetry run python -m pytest -m "integtest"'