Skip to content

Add CI/CD pipelines for testing and publishing #1

Add CI/CD pipelines for testing and publishing

Add CI/CD pipelines for testing and publishing #1

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install uv
run: pip install uv
- name: Install dependencies
run: uv sync --all-extras
- name: Lint with ruff
run: uv run ruff check .
- name: Format with ruff
run: uv run ruff format --check .
- name: Type check with mypy
run: uv run mypy .
- name: Test with pytest
run: uv run pytest