Merge pull request #2 from xeonvs/codex/engineering-workflow-0.8.0 #20
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: ci | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| env: | |
| PYTHONDONTWRITEBYTECODE: "1" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.11" | |
| - name: Validate skill repo | |
| run: python skill/engineering-workflow/scripts/validate_skill_repo.py --repo-root . | |
| - name: Run tests | |
| run: python -m unittest discover -s tests -v | |
| - name: Revalidate clean repository state | |
| run: python skill/engineering-workflow/scripts/validate_skill_repo.py --repo-root . | |
| - name: Check patch whitespace | |
| run: git diff --check |