Add continuous Frozen Lake reproducibility suites #11
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: smoke | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Compile scripts | |
| run: python -m py_compile scripts/*.py | |
| - name: Validate suite counts | |
| run: python scripts/validate_config.py | |
| - name: Validate continuous-line suite counts | |
| run: python scripts/validate_continuous_line_config.py | |
| - name: Validate continuous-corridor suite counts | |
| run: python scripts/validate_continuous_corridor_config.py | |
| - name: Dry-run smoke suite | |
| run: python scripts/reproduce_officeworld.py --suite smoke --dry-run | |
| - name: Dry-run continuous-line smoke suite | |
| run: python scripts/reproduce_continuous_line.py --suite continuous_line_smoke --dry-run | |
| - name: Dry-run continuous-corridor smoke suite | |
| run: python scripts/reproduce_continuous_corridor.py --suite continuous_corridor_smoke --dry-run |