Skip to content

Move ifrt based reshard out of experimental. Leaving intermediate resharding and sidechannel resharding in experimental. #1012

Move ifrt based reshard out of experimental. Leaving intermediate resharding and sidechannel resharding in experimental.

Move ifrt based reshard out of experimental. Leaving intermediate resharding and sidechannel resharding in experimental. #1012

Workflow file for this run

name: Check the Documentation Build
on:
pull_request:
types: [opened, synchronize]
workflow_dispatch:
permissions:
contents: read
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: '3.12'
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: pip install .[docs]
- name: Build documentation
run: |
pushd docs # XXX _collection/examples not found if run from root
sphinx-build -W -b html . ./_build/html