Skip to content

Update to modern packaging setup #127

Update to modern packaging setup

Update to modern packaging setup #127

Workflow file for this run

on:
pull_request:
branches: [main, master]
push:
branches: [main, master]
name: test-coverage
jobs:
test-coverage:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: pip install .[test]
- name: Run pytest
run: |
pytest --doctest-modules \
--junitxml=junit/test-results-${{ matrix.python-version }}.xml
- name: Upload artifacts
if: failure()
uses: actions/upload-artifact@v4
with:
name: pytest-results-${{ matrix.python-version }}
path: junit/test-results-${{ matrix.python-version }}.xml