Skip to content

Initial commit

Initial commit #4

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: macos-14
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup uv and Python
uses: astral-sh/setup-uv@v6
with:
python-version: "3.11"
enable-cache: true
- name: Sync dependencies
run: uv sync --extra dev
- name: Lint
run: uv run ruff check .
- name: Run tests
run: uv run pytest