Skip to content

Switch to Poetry, adopt tox and pytest #1172

Switch to Poetry, adopt tox and pytest

Switch to Poetry, adopt tox and pytest #1172

Workflow file for this run

name: Regression Testing
on:
pull_request:
branches: [ master ]
push:
branches: [ master, feature/tox ]
jobs:
regression-testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [
ubuntu-latest,
windows-latest,
]
python-version: [
'3.8',
'3.9',
'3.10',
'3.11',
'3.12',
'3.13',
]
steps:
- uses: actions/checkout@v4
- name: Set up environment ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Run tox
run: tox