Skip to content

Stabilize DM threading and enforce mutation confirmation proof #499

Stabilize DM threading and enforce mutation confirmation proof

Stabilize DM threading and enforce mutation confirmation proof #499

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python
run: uv python install 3.12
- name: Install dependencies
run: uv sync --all-groups
- name: Check formatting
run: uv run ruff format --check .
- name: Lint
run: uv run ruff check .
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Install dependencies
run: uv sync --all-groups
- name: Run tests
run: uv run pytest
env:
# Prevent tests from trying to use real API keys
ANTHROPIC_API_KEY: ""
OPENAI_API_KEY: ""