Skip to content

Support target treatment indicator other than 1 (#78) #68

Support target treatment indicator other than 1 (#78)

Support target treatment indicator other than 1 (#78) #68

Workflow file for this run

name: Build Docs
on:
push:
branches:
- main
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Install dependencies
run: |
uv sync --dev
- name: Build documentation
run: |
cd docs
uv run make html
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build/html