Skip to content

Merge pull request #2 from xeonvs/codex/engineering-workflow-0.8.0 #20

Merge pull request #2 from xeonvs/codex/engineering-workflow-0.8.0

Merge pull request #2 from xeonvs/codex/engineering-workflow-0.8.0 #20

Workflow file for this run

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