Skip to content
This repository was archived by the owner on Apr 6, 2026. It is now read-only.

chore(deps): bump typer from 0.23.0 to 0.24.0 #13

chore(deps): bump typer from 0.23.0 to 0.24.0

chore(deps): bump typer from 0.23.0 to 0.24.0 #13

Workflow file for this run

name: Tests
on:
pull_request:
branches: [main]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
version: "latest"
- name: Set up Python
run: uv python install 3.14
- name: Install dependencies
run: uv sync --dev
- name: Run tests
run: uv run pytest tests/ -v --tb=short --cov=pandaproxy --cov-report=xml
- name: Upload coverage
uses: codecov/codecov-action@v5
with:
files: ./coverage.xml