[codex] Document case camouflage install smoke #15
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 | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| repo-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Check required files | |
| run: make check-docs | |
| - name: Check skill and example layout | |
| run: make check-examples | |
| - name: Check eval cases | |
| run: make eval | |
| - name: Review examples, evals, and stress tests | |
| run: make review-fixtures | |
| - name: List production skills | |
| run: make list-skills | |
| - name: Parse YAML metadata | |
| run: | | |
| ruby -e 'require "yaml"; ARGV.each { |f| YAML.load_file(f); puts "yaml ok #{f}" }' .github/ISSUE_TEMPLATE/*.yml */agents/openai.yaml skills/*/agents/openai.yaml templates/amazon-ppc-skill-template/agents/openai.yaml | |
| - name: Validate repo layout | |
| run: make validate | |
| - name: Run masked output tests | |
| run: make test |