Skip to content

Add CI pipeline and update README #1

Add CI pipeline and update README

Add CI pipeline and update README #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Install Python and dependencies
run: uv sync
- name: Run tests
run: uv run python -m pytest tests/ -v --tb=short