Be more specific about what is a round #298
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: Plan File Validation Tests | |
| on: | |
| push: | |
| paths: | |
| - 'scripts/setup-rlcr-loop.sh' | |
| - 'hooks/loop-plan-file-validator.sh' | |
| - 'hooks/loop-codex-stop-hook.sh' | |
| - 'hooks/loop-write-validator.sh' | |
| - 'hooks/loop-edit-validator.sh' | |
| - 'hooks/loop-bash-validator.sh' | |
| - 'hooks/lib/loop-common.sh' | |
| - 'tests/test-plan-file-*.sh' | |
| - 'tests/test-state-exit-naming.sh' | |
| - 'tests/test-cancel-signal-file.sh' | |
| - 'commands/cancel-rlcr-loop.md' | |
| pull_request: | |
| paths: | |
| - 'scripts/setup-rlcr-loop.sh' | |
| - 'hooks/loop-plan-file-validator.sh' | |
| - 'hooks/loop-codex-stop-hook.sh' | |
| - 'hooks/loop-write-validator.sh' | |
| - 'hooks/loop-edit-validator.sh' | |
| - 'hooks/loop-bash-validator.sh' | |
| - 'hooks/lib/loop-common.sh' | |
| - 'tests/test-plan-file-*.sh' | |
| - 'tests/test-state-exit-naming.sh' | |
| - 'tests/test-cancel-signal-file.sh' | |
| - 'commands/cancel-rlcr-loop.md' | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y jq | |
| - name: Run plan file validation tests | |
| run: | | |
| chmod +x tests/test-plan-file-validation.sh | |
| ./tests/test-plan-file-validation.sh | |
| - name: Run plan file hook tests | |
| run: | | |
| chmod +x tests/test-plan-file-hooks.sh | |
| ./tests/test-plan-file-hooks.sh | |
| - name: Run state exit naming tests | |
| run: | | |
| chmod +x tests/test-state-exit-naming.sh | |
| ./tests/test-state-exit-naming.sh | |
| - name: Run cancel signal file tests | |
| run: | | |
| chmod +x tests/test-cancel-signal-file.sh | |
| ./tests/test-cancel-signal-file.sh |