Skip to content

Fix MCPB download link #22

Fix MCPB download link

Fix MCPB download link #22

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v6
- name: Install dependencies
run: uv sync --dev
- name: Lint
run: uv run ruff check .
- name: Type check
run: uv run pyright
- name: Unit tests
run: uv run pytest