Skip to content

Redesign InMemoryDataset data model #415

Redesign InMemoryDataset data model

Redesign InMemoryDataset data model #415

Workflow file for this run

name: Build docs
on:
pull_request:
workflow_dispatch:
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Setup Graphviz
run: |
sudo apt install graphviz -y
- name: Install libhdf5-dev
run: |
set -xe
sudo apt update -y
sudo apt install -y libhdf5-dev mpi-default-dev
- name: Install versioned-hdf5
run: |
set -xe
pip install .
- name: Install versioned-hdf5 doc
run: |
pip install .[doc]
- name: Build docs
working-directory: docs
run: |
# Need to set timezone to avoid a sphinx/babel issue
# when using act to run locally:
# https://github.com/nektos/act/issues/1853
TZ=UTC make html