Skip to content

Update CHANGELOG with Round 18 deployment-review fixes #3

Update CHANGELOG with Round 18 deployment-review fixes

Update CHANGELOG with Round 18 deployment-review fixes #3

Workflow file for this run

name: tests
on:
push:
pull_request:
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# the review reported a k-fold assertion that behaved differently across
# interpreter/BLAS builds; pin both ends of the supported range so a
# version-specific regression is caught here instead of on a workstation.
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt pytest
- name: Run tests
run: python -m pytest tests -q