Skip to content

Search handler groups #423

Search handler groups

Search handler groups #423

Workflow file for this run

name: Run Tests
on:
push:
pull_request:
types: [opened, reopened, synchronize]
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ '3.11', '3.12', '3.13' ]
name: check ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up CPython ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
id: install-deps
run: |
python -m pip install -e .[tests]
- name: Run Tests
if: ${{ always() && steps.install-deps.outcome == 'success' }}
run: |
python -m pytest