Skip to content

Update Evaluation

Update Evaluation #60

Workflow file for this run

name: docs (build)
on:
pull_request:
branches:
- main
paths:
- .pre-commit-config.yaml
- .github/workflows/docs_build.yml
- '**.py'
- '**.ipynb'
- '**.js'
- '**.html'
- uv.lock
- pyproject.toml
- '**.rst'
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Install uv
uses: astral-sh/setup-uv@4db96194c378173c656ce18a155ffc14a9fc4355
with:
# Install a specific version of uv.
version: "0.5.21"
enable-cache: true
- name: "Set up Python"
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38
with:
python-version-file: "health_rec/.python-version"
- name: Install the project
run: |
cd health_rec
uv sync --all-extras --all-groups
- name: Build docs
run: |
source health_rec/.venv/bin/activate
cd docs && rm -rf source/reference/api/_autosummary && uv run make html