Skip to content

Release 2.4

Release 2.4 #141

Workflow file for this run

name: 'ALL: Run tests on Python 3.13'
on:
pull_request:
push:
branches:
- main
jobs:
current_python_tests:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
concurrency:
group: ${{ github.workflow }}-${{ matrix.os }}-${{ github.ref }}
cancel-in-progress: true
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest']
steps:
- name: Check out repo
uses: actions/checkout@0c366fd6a839edf440554fa01a7085ccba70ac98
with:
persist-credentials: false
- name: Install Python
uses: actions/setup-python@28f2168f4d98ee0445e3c6321f6e6616c83dd5ec
with:
python-version: '3.13'
cache: 'pip'
cache-dependency-path: requirements-ci.txt
- name: Update pip
run: python -m pip install -U pip
- name: Install & report CI dependencies
run: |
python -m pip install -U --force-reinstall -r requirements-ci.txt
python --version
pip list
- name: Build docs
run: |
cd doc
make html
mkdir scratch
- name: Run tests & report source coverage
run: |
pytest --cov --testall