Skip to content

Update CHANGES.rst for PR #420 #103

Update CHANGES.rst for PR #420

Update CHANGES.rst for PR #420 #103

Workflow file for this run

name: Testsuite Run
on: [push]
jobs:
test:
name: Test Python ${{ matrix.python-version }}
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@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Test with pil
run: uv run --extra pil --group dev pytest
- name: Test with png
run: uv run --extra png --group dev pytest
- name: Test with none
run: uv run --group dev pytest