Bump msgpack from 1.1.2 to 1.2.1 #442
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |