[2152-fix] fixed issue #2152 #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Regression Testing | |
on: | |
pull_request: | |
branches: [ master ] | |
push: | |
branches: [ master ] | |
jobs: | |
tox-matrix: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false # We want to know what version it fails on | |
matrix: | |
os: [ | |
ubuntu-latest, | |
windows-latest, | |
macos-latest, | |
] | |
python-version: [ | |
'3.8', | |
'3.9', | |
'3.10', | |
'3.11', | |
'3.12', | |
] | |
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 and related dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox | |
pip install tox-gh-actions | |
- name: Run tox | |
run: tox |