Skip to content

DOC: Increase gallery thumbnail size #513

DOC: Increase gallery thumbnail size

DOC: Increase gallery thumbnail size #513

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test Docs
on:
- pull_request
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r docs/requirements-docs.txt
sudo apt-get install pandoc -y
- name: Install package
run: python -m pip install .
- name: Test sphinx-build
run: sphinx-build -W -nT -b dummy ./docs/source build/html