Skip to content

Build(deps-dev): bump python-dotenv from 1.0.0 to 1.0.1 #718

Build(deps-dev): bump python-dotenv from 1.0.0 to 1.0.1

Build(deps-dev): bump python-dotenv from 1.0.0 to 1.0.1 #718

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