fix: unify label widths when widgets passed to Container constructor … #994
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: docs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| docs: | |
| runs-on: macos-latest # for the screenshots | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - uses: astral-sh/setup-uv@v7 | |
| with: | |
| python-version: "3.13" | |
| enable-cache: true | |
| - name: Deploy docs to GitHub Pages | |
| if: github.event_name == 'push' | |
| run: uv run --group docs mkdocs gh-deploy --strict --force | |
| - name: Test that docs build without error | |
| if: github.event_name == 'pull_request' | |
| run: uv run --group docs mkdocs build --strict |