Skip to content

OpenAPI schema sync (v3.6.0) #548

OpenAPI schema sync (v3.6.0)

OpenAPI schema sync (v3.6.0) #548

Workflow file for this run

name: test
on:
pull_request:
workflow_dispatch:
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: [ "3.9", "3.10", "3.11", "3.12", "3.13", "pypy3.11" ]
steps:
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
with:
enable-cache: true
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: uv sync
- name: "Run tests for ${{ matrix.python-version }}"
run: "uv run pytest"