Skip to content

[ENH] Include custom ODFs #163

[ENH] Include custom ODFs

[ENH] Include custom ODFs #163

Workflow file for this run

name: Documentation build
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- name: Checkout repo
uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
python -m pip install --upgrade pip
pip install .[all]
sudo apt-get install -y xvfb
- name: Build docs
env:
XVFB: 1
DISPLAY: :99
run: |
Xvfb :99 -screen 0 1280x1024x24 &
cd docs
make html
- name: Upload docs
uses: actions/upload-artifact@v4
with:
name: docs
path: docs/build/html
- name: Publish docs to Github Pages
if: startsWith(github.event.ref, 'refs/tags')
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
folder: docs/build/html