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

chore: Version 0.1.3 -> 0.1.4 #117

chore: Version 0.1.3 -> 0.1.4

chore: Version 0.1.3 -> 0.1.4 #117

Workflow file for this run

name: CI
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
jobs:
quality:
runs-on: ubuntu-latest
name: Code Quality
steps:
- name: Check out
uses: actions/checkout@v6
- name: Set up uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Run ruff linting
run: uv run ruff check
- name: Run ruff formatting
run: uv run ruff format --check
- name: Run type checking
run: uv run mypy
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12']
name: Test Python ${{ matrix.python-version }} on ${{ matrix.os }}
steps:
- name: Check out
uses: actions/checkout@v6
- name: Set up uv
uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --python ${{ matrix.python-version }} --all-extras --dev
- name: Run tests
run: uv run pytest --cov --cov-report=xml --cov-report=term