Skip to content

0.9.6.34: healthcare diagnoses were an independent draw per row, so n… #21

0.9.6.34: healthcare diagnoses were an independent draw per row, so n…

0.9.6.34: healthcare diagnoses were an independent draw per row, so n… #21

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [main]
paths:
- "docs/**"
- "mkdocs.yml"
- ".github/workflows/docs.yml"
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
name: Build and deploy MkDocs site
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # full history for git-revision-date plugin
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- name: Install MkDocs
run: pip install mkdocs-material>=9.5.0
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force --clean