Bump version #404
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: Test documentation | |
on: | |
pull_request: | |
jobs: | |
test-docs: | |
# Functionality for testing documentation builds on multiple OSes and Python versions | |
name: Build docs (${{ matrix.python-version }}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
concurrency: | |
group: ${{ github.head_ref }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
matrix: | |
os: ["ubuntu-latest"] | |
python-version: ["3.10"] | |
steps: | |
# Grap the latest commit from the branch | |
- name: Checkout the branch | |
uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
# Create a virtual environment | |
- name: create Conda environment | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
python-version: ${{ matrix.python-version }} | |
# Install katex for math support | |
- name: Install NPM | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install KaTeX | |
run: | | |
npm install katex | |
- name: Install LaTex | |
run: | | |
sudo apt-get update | |
sudo apt-get install texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra dvipng cm-super | |
# Install Poetry and build the documentation | |
- name: Install and configure Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 1.2.2 | |
virtualenvs-create: false | |
virtualenvs-in-project: false | |
installer-parallel: true | |
- name: Build the documentation with MKDocs | |
run: | | |
cp docs/examples/gpjax.mplstyle . | |
poetry install --all-extras --with docs | |
conda install pandoc | |
poetry run mkdocs build |