sherlock/.github/workflows/regression.yml

71 lines
1.7 KiB
YAML
Raw Normal View History

2024-05-20 20:56:38 +00:00
name: Regression Testing
on:
pull_request:
branches:
- master
- release/**
paths:
2024-06-24 20:15:12 +00:00
- '.github/workflows/regression.yml'
- '**/*.json'
- '**/*.py'
- '**/*.ini'
- '**/*.toml'
2024-05-20 20:56:38 +00:00
push:
branches:
- master
- release/**
paths:
2024-06-24 20:15:12 +00:00
- '.github/workflows/regression.yml'
- '**/*.json'
- '**/*.py'
- '**/*.ini'
- '**/*.toml'
jobs:
2024-06-24 20:06:33 +00:00
tox-lint:
# Linting is ran through tox to ensure that the same linter is used by local runners
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up linting environment
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install tox and related dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run tox linting environment
run: tox -e lint
2024-05-31 21:08:50 +00:00
tox-matrix:
2024-05-20 20:56:38 +00:00
runs-on: ${{ matrix.os }}
strategy:
2024-06-24 20:06:33 +00:00
fail-fast: false # We want to know what specicic versions it fails on
2024-05-20 20:56:38 +00:00
matrix:
os: [
ubuntu-latest,
2024-05-21 03:24:03 +00:00
windows-latest,
macos-latest,
2024-05-20 20:56:38 +00:00
]
python-version: [
'3.8',
'3.9',
'3.10',
'3.11',
'3.12',
]
steps:
2024-05-20 20:56:38 +00:00
- 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
2024-06-24 20:06:33 +00:00
run: tox