Skip to content

Add support for defining Dirichlet BCs on mixed function spaces #60

Add support for defining Dirichlet BCs on mixed function spaces

Add support for defining Dirichlet BCs on mixed function spaces #60

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
pull_request:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Cache tox
uses: actions/cache@v3
with:
path: .tox
key: tox-${{hashFiles('pyproject.toml')}}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.x
cache: "pip"
cache-dependency-path: "pyproject.toml"
- name: Install tox
run: python -m pip install tox
- name: Build HTML documentation with tox
run: tox -e docs
- name: Pubish documentation on GitHub pages
if: success() && github.event_name != 'pull_request'
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs/_build/html
branch: gh-pages
git-config-name: "github-actions[bot]"
git-config-email: "github-actions[bot]@users.noreply.github.com"