Test markdown changelog creation in CI

Extract a github action to install the same version used in the release
workflow.  In future we should probably migrate to requirements.txt
or similar.
This commit is contained in:
Johannes Altmanninger
2025-09-24 08:20:08 +02:00
parent 765ca54d59
commit 127c02992d
4 changed files with 21 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
name: Install sphinx-markdown-builder
permissions:
contents: read
runs:
using: "composite"
steps:
- run: pip install sphinx-markdown-builder==0.6.8
shell: bash