Add validation badge to README #6
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: Validate Skill | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Check SKILL.md | |
| run: python scripts/check_skill_md.py SKILL.md | |
| - name: Check gotcha registry | |
| run: python scripts/check_gotcha_registry.py references/rhinocommon-gotchas.json | |
| - name: Inspect repo structure | |
| run: python scripts/inspect_skill_repo.py . |