Skip to content

Fix sampling, MC estimator improvements, and OnTime CE notebook #41

Fix sampling, MC estimator improvements, and OnTime CE notebook

Fix sampling, MC estimator improvements, and OnTime CE notebook #41

Workflow file for this run

name: CI
on:
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
- name: Set up Python
run: uv python install 3.11
- name: Install dependencies
run: uv sync --extra dev
- name: Run ruff check
run: uv run ruff check .
- name: Run ruff format check
run: uv run ruff format --check .
- name: Run tests
run: uv run pytest -v --tb=short .