Skip to content

Bump mkdocs-mermaid2-plugin from 1.1.1 to 1.2.1 in /docs (#141) #421

Bump mkdocs-mermaid2-plugin from 1.1.1 to 1.2.1 in /docs (#141)

Bump mkdocs-mermaid2-plugin from 1.1.1 to 1.2.1 in /docs (#141) #421

Workflow file for this run

name: Documentation Checks
on: push
jobs:
build:
strategy:
max-parallel: 4
matrix:
os: [ubuntu-22.04]
python-version: ["3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r docs/requirements.txt
- name: Test building docs
run: mkdocs build