Skip to content

[pre-commit.ci] pre-commit autoupdate #68

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #68

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
FORCE_COLOR: 1
jobs:
test:
name: pytest, Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-24.04
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
include:
- python-version: "3.14"
os: ubuntu-24.04
- python-version: "3.14"
os: ubuntu-24.04-arm
- python-version: "3.13"
os: macos-15
- python-version: "3.13"
os: windows-2025
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: astral-sh/setup-uv@4db96194c378173c656ce18a155ffc14a9fc4355 # v5.2.2
with:
version: ">=0.5.30"
- env:
UV_PYTHON: ${{ matrix.python-version }}
run: uv run pytest