docs(seismic-alloy): Update alloy client docs to reflect updated seismic-alloy #95
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 | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "docs/**" | |
| - "workspace/**" | |
| - "README.md" | |
| - "CLAUDE.md" | |
| pull_request: | |
| paths: | |
| - "docs/**" | |
| - "workspace/**" | |
| - "README.md" | |
| - "CLAUDE.md" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| gitbook-links: | |
| name: GitBook broken links | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: lycheeverse/lychee-action@v2 | |
| with: | |
| args: "--offline --root-dir docs/gitbook --no-progress 'docs/gitbook/**/*.md'" | |
| fail: true | |
| repo-links: | |
| name: Repo docs broken links | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: lycheeverse/lychee-action@v2 | |
| with: | |
| args: "--offline --no-progress 'docs/*.md' 'workspace/*.md' 'README.md' 'CLAUDE.md'" | |
| fail: true |