Skip to content

Ignore AttributeError when deleting temporary audio buffers #283

Ignore AttributeError when deleting temporary audio buffers

Ignore AttributeError when deleting temporary audio buffers #283

Workflow file for this run

name: Build docs and check links
on: [push, pull_request]
env:
SPHINX: uv run --locked --no-build --only-group doc sphinx-build -W --keep-going --color
UV_PYTHON_DOWNLOADS: never
jobs:
docs-linkcheck:
runs-on: ubuntu-latest
steps:
- name: Clone Git repository (no submodules, without depth limitation)
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Build HTML
run: |
$SPHINX -d _build/doctrees/ doc/ _build/html/ -b html
- name: Check links
run: |
$SPHINX -d _build/doctrees/ doc/ _build/linkcheck/ -b linkcheck
- name: Upload linkcheck results
uses: actions/upload-artifact@v6
if: ${{ success() || failure() }}
with:
name: linkcheck
path: _build/linkcheck/output.*