set realistic expectations for tts job #43
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 Skills | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check Out Repository | |
| uses: actions/checkout@v6 | |
| - name: Set Up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - name: Set Up Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "20" | |
| - name: Install Validation Tools | |
| # Required by skill probe suites that shell out to external CLIs: | |
| # - skills/ripgrep/scripts/probe_ripgrep.py -> `rg --version` | |
| # - skills/httpie/scripts/probe_httpie.py -> `http`, `https`, `httpie` | |
| run: sudo apt-get update && sudo apt-get install -y ripgrep httpie | |
| - name: Validate Skills | |
| shell: bash | |
| # CI validation is driven by the repository scripts directly; it does | |
| # not depend on node_modules, so skip pnpm install and run the shared | |
| # validator entrypoint that local validation uses too. | |
| run: bash scripts/validate-all-skills.sh |