[DNM] Redesign InMemoryDataset data model with hyperrectangles selection #418
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |