build: bump libghostty-vt to ghostty main tip + zig 0.16 #15
Workflow file for this run
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 PR Build | |
| on: | |
| pull_request: | |
| paths: | |
| - 'docs/**' | |
| - 'zensical.toml' | |
| - 'pyproject.toml' | |
| - 'uv.lock' | |
| - 'CHANGELOG.md' | |
| - '.github/workflows/docs-pr.yml' | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: docs-pr-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| persist-credentials: false | |
| # setup-uv publishes no moving major tag -- v9 does not resolve. | |
| - uses: astral-sh/setup-uv@v9.0.0 | |
| - run: uv python install 3.13 | |
| - run: uv sync --locked --group docs | |
| - run: uv run --locked zensical build --strict |