Skip to content

Bump rojopolis/spellcheck-github-actions from 0.43.1 to 0.44.0 #416

Bump rojopolis/spellcheck-github-actions from 0.43.1 to 0.44.0

Bump rojopolis/spellcheck-github-actions from 0.43.1 to 0.44.0 #416

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