Skip to content

Bump coverage[toml] from 7.6.5 to 7.6.7 #1030

Bump coverage[toml] from 7.6.5 to 7.6.7

Bump coverage[toml] from 7.6.5 to 7.6.7 #1030

Workflow file for this run

name: Checks
on:
push:
branches:
- main
pull_request:
jobs:
docs-build:
name: Docs / Build
runs-on: ubuntu-latest
steps:
- name: Check out code from GitHub
uses: actions/[email protected]
with:
fetch-depth: 2
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: pip install -U -r docs/requirements-doc.txt
- name: Make docs
run: |
cd docs
make html
- name: Compare the diff
run: |
git diff > DIFF
if [ -s DIFF ]; then
echo "Documentation is not up to date."
echo "Please perform the following commands locally and then re-commit."
echo "pip install -e ."
echo "cd docs"
echo "make html"
exit 1
else
echo "Documentation is up to date."
fi