update #1
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: Codex plugin tests | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Run native RLCR tests | |
| run: python3 tests/test-codex-native-rlcr.py | |
| - name: Validate JSON manifests | |
| run: | | |
| python3 -m json.tool .agents/plugins/marketplace.json >/dev/null | |
| python3 -m json.tool plugins/jakeshea-humanize-rlcr/.codex-plugin/plugin.json >/dev/null | |
| python3 -m json.tool plugins/jakeshea-humanize-rlcr/hooks/hooks.json >/dev/null | |
| python3 -m json.tool plugins/jakeshea-humanize-rlcr/schemas/review-v1.json >/dev/null | |
| - name: Check controller syntax | |
| run: | | |
| python3 -m py_compile \ | |
| plugins/jakeshea-humanize-rlcr/controller/*.py \ | |
| plugins/jakeshea-humanize-rlcr/scripts/rlcr.py \ | |
| plugins/jakeshea-humanize-rlcr/skills/humanize-rlcr/scripts/rlcr.py |