Skip to content

add testsuite probing creation of mf/mt sections #3

add testsuite probing creation of mf/mt sections

add testsuite probing creation of mf/mt sections #3

Workflow file for this run

name: Test package
on:
push:
branches: [main]
workflow_call:
permissions:
contents: read
jobs:
test_package:
strategy:
matrix:
python-version: ['3.10', '3.12']
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{matrix.python-version}}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --with dev
- name: Run tests
run: poetry run pytest