Fix validation of variable lengths string datasets in Zarr #1891
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: Check Sphinx links | |
| on: | |
| pull_request: | |
| schedule: | |
| - cron: '0 5 * * *' # once per day at midnight ET | |
| workflow_dispatch: | |
| jobs: | |
| check-sphinx-links: | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: Checkout repo with submodules | |
| uses: actions/checkout@v5 | |
| with: | |
| submodules: 'recursive' | |
| fetch-depth: 0 # tags are required to determine the version | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.12' # TODO: Update to 3.13 when linkml and its deps support 3.13 | |
| - name: Install Sphinx dependencies and package | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install ".[all]" | |
| - name: Check Sphinx internal and external links | |
| run: sphinx-build -W -b linkcheck ./docs/source ./test_build |