Skip to content

Package updates

Package updates #85

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
unit-tests:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest, macos-latest]
name: Unit Tests - ${{ matrix.os }} - Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
id: setup-python
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pip install poetry
- name: Install Python dependencies
run: poetry install
- name: Run unit tests
run: poetry run pytest -c tests/pytest.ini tests