Skip to content

[UX] Improve visual layout when using filled containers #2133

[UX] Improve visual layout when using filled containers

[UX] Improve visual layout when using filled containers #2133

name: Docs Links Checker
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
branches:
workflow_dispatch: # Allow for running this manually.
env:
PYTHON_VERSION: "3.13"
jobs:
link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install Hatch
run: pip install hatch
- name: Check vizro-core docs links
working-directory: ./vizro-core
run: |
hatch run docs:pip tree
hatch run docs:build
hatch run docs:link-check
- name: Check vizro-ai docs links
working-directory: ./vizro-ai
if: always()
run: |
hatch run docs:pip tree
hatch run docs:build
hatch run docs:link-check
- name: Check vizro-mcp docs links
working-directory: ./vizro-mcp
if: always()
run: |
hatch run docs:links-in-prompts-check
hatch run docs:pip tree
hatch run docs:build
hatch run docs:link-check