Skip to content

Clarify v2 README status and corpus workflow #118

Clarify v2 README status and corpus workflow

Clarify v2 README status and corpus workflow #118

Workflow file for this run

name: Run tests
on:
push:
branches:
- master
- v2
- v2-*
pull_request:
branches:
- master
- v2
jobs:
run-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install package and test dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e . pytest
- name: Run v2 tests
run: bash scripts/test-v2.sh