Skip to content

chore: add Apache 2.0 license #4

chore: add Apache 2.0 license

chore: add Apache 2.0 license #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13", "3.14"]
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- run: uv sync --extra dev
- name: Lint
run: |
uvx ruff check src/ tests/
uvx ruff format --check src/ tests/
- name: Test
run: uv run pytest tests/ -v
- name: Build
run: uv build