Skip to content

RowConsumerToResultReceiver must be closed and finished if there was an attempt to close it #19533

RowConsumerToResultReceiver must be closed and finished if there was an attempt to close it

RowConsumerToResultReceiver must be closed and finished if there was an attempt to close it #19533

Workflow file for this run

---
name: CrateDB Docs
on:
pull_request:
paths:
- '**.rst'
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
linkcheck:
name: Sphinx linkcheck
runs-on: ubuntu-latest
env:
UV_SYSTEM_PYTHON: true
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
cache-dependency-glob: |
blackbox/requirements.txt
enable-cache: true
version: "latest"
- name: Install dependencies
run: |
uv pip install --upgrade pip setuptools
uv pip install -r blackbox/requirements.txt
- name: Run linkcheck
run: |
sphinx-build -n -W --keep-going -q -c docs/ -b linkcheck -E docs/ docs/out/html
vale:
name: Vale
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run vale
uses: errata-ai/vale-action@v2.1.0
with:
files: docs/
version: 3.4.1
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}