Skip to content

chore: update generated python client code to v3.0.0 #10

chore: update generated python client code to v3.0.0

chore: update generated python client code to v3.0.0 #10

Workflow file for this run

name: Build and test
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Lint (ruff)
run: uv run ruff check tests/
- name: Type check (mypy)
run: uv run mypy tests/
- name: Test (pytest)
run: uv run pytest --cov=src --cov-report=term-missing