Skip to content

API change: dolfinx.fem.FunctionSpaceBase->dolfinx.fem.FunctionSpace #46

API change: dolfinx.fem.FunctionSpaceBase->dolfinx.fem.FunctionSpace

API change: dolfinx.fem.FunctionSpaceBase->dolfinx.fem.FunctionSpace #46

Workflow file for this run

name: Build documentation
on:
# Runs on pushes targeting the default branch
pull_request:
branches:
- "main"
workflow_call:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
container: ghcr.io/fenics/dolfinx/dolfinx:nightly
env:
DEB_PYTHON_INSTALL_LAYOUT: deb_system
PUBLISH_DIR: ./_build/html
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: python3 -m pip install ".[docs]"
- name: Build docs
run: jupyter book build -W .
- name: Upload documentation
uses: actions/upload-artifact@v3
with:
name: documentation
path: ./_build/html
if-no-files-found: error