docs: expand Anthropic Skills + MCP Servers into full chapters #17
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 Health | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Validate Docs Health | |
| run: | | |
| python scripts/docs_health.py \ | |
| --baseline-file .github/baselines/broken-local-links.txt \ | |
| --json-output docs-health-report.json | |
| - name: Validate Tutorial Manifest Is Current | |
| run: | | |
| python scripts/generate_tutorial_manifest.py --output /tmp/tutorial-manifest.json | |
| diff -u tutorials/tutorial-manifest.json /tmp/tutorial-manifest.json |