Skip to content

Bump the actions group with 5 updates #282

Bump the actions group with 5 updates

Bump the actions group with 5 updates #282

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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
fetch-depth: 0
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: "3.x"
- name: Install docs dependencies
run: |
python -m pip install . --group docs
- name: Sphinx build
run: |
cd docs
make html