Skip to content

Start 0.2.0 development #2

Start 0.2.0 development

Start 0.2.0 development #2

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@v5
- name: Install
run: uv sync --group dev
- name: Lint
run: uv run ruff check .
- name: Typecheck
run: uv run mypy src
- name: Test
run: uv run pytest
- name: Build
run: uv build