Skip to content

Test

Test #3

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
# fail-fast: true
max-parallel: 5
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
os: [ ubuntu-latest, macos-latest ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip poetry
poetry install --with dev
- name: PyTest testrunner
run: |
poetry run pytest