Implement pg_auth_members
table
#19536
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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}} |