Skip to content

v3.1.0: Payout Score Configs + Python 3.14 + Pandas 3 #428

v3.1.0: Payout Score Configs + Python 3.14 + Pandas 3

v3.1.0: Payout Score Configs + Python 3.14 + Pandas 3 #428

Workflow file for this run

name: Pytest
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
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 dependencies
run: |
python -m pip install --upgrade pip
python -m pip install . -r requirements_tests.txt
- name: Require pandas 3 on Python 3.14
if: matrix.python-version == '3.14'
run: python -m pip install "pandas>=3,<4"
- name: Run tests
run: python -m pytest --import-mode=append tests/ --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
directory: ./coverage/reports/
fail_ci_if_error: false
verbose: true
files: ./coverage.xml