You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
901 B
41 lines
901 B
8 months ago
|
name: Regression Testing
|
||
5 years ago
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches: [ master ]
|
||
8 months ago
|
push:
|
||
8 months ago
|
branches: [ master ]
|
||
5 years ago
|
|
||
|
jobs:
|
||
7 months ago
|
tox-matrix:
|
||
8 months ago
|
runs-on: ${{ matrix.os }}
|
||
5 years ago
|
strategy:
|
||
8 months ago
|
fail-fast: false # We want to know what version it fails on
|
||
8 months ago
|
matrix:
|
||
|
os: [
|
||
|
ubuntu-latest,
|
||
8 months ago
|
windows-latest,
|
||
|
macos-latest,
|
||
8 months ago
|
]
|
||
|
python-version: [
|
||
|
'3.8',
|
||
|
'3.9',
|
||
|
'3.10',
|
||
|
'3.11',
|
||
|
'3.12',
|
||
|
]
|
||
5 years ago
|
|
||
|
steps:
|
||
8 months ago
|
- 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
|