Skip to content

Raise matplotlib lower bound #224

Raise matplotlib lower bound

Raise matplotlib lower bound #224

Workflow file for this run

# This workflow runs the pre-commit hooks on all files and confirms the docs can be built.
#
# Author: Stefanie Molin
name: Check PR
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
# Check that docs can be built
docs:
runs-on: ubuntu-latest
name: Build docs
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install '.[docs]'
- name: Sphinx build
run: |
cd docs
make html