Skip to content

changelog.txt -> CHANGELOG.md #3044

changelog.txt -> CHANGELOG.md

changelog.txt -> CHANGELOG.md #3044

Workflow file for this run

name: Docs CI
on:
pull_request:
types: [opened, reopened, synchronize]
paths:
- 'docs/**'
- '.github/workflows/docs.yml'
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
docs-build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '3.14.5'
cache: 'pip'
cache-dependency-path: docs/requirements.txt
- name: Test docs build
run: |
cd docs/
pip install -r requirements.txt
make clean html