Skip to content

Bump msgpack from 1.1.2 to 1.2.1 #442

Bump msgpack from 1.1.2 to 1.2.1

Bump msgpack from 1.1.2 to 1.2.1 #442

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install Project Dependencies
run: uv sync --locked --all-extras --dev
- name: Lint
run: uv run ruff check
- name: Run Type Checking
run: uv run ty check
- name: Run tests
run: uv run pytest -n auto --no-cov