Skip to content

Bump idna from 3.11 to 3.15 #27

Bump idna from 3.11 to 3.15

Bump idna from 3.11 to 3.15 #27

Workflow file for this run

name: Docs Check
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check_docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install dependencies
run: uv sync --group dev
- name: Generate docs
run: uv run ./generate_docs
- name: Check for uncommitted changes
run: |
if ! git diff --exit-code; then
echo "Generated docs differ from committed docs. Run './generate_docs' and commit the result."
exit 1
fi