Add paper Table 4 and configuration figures #5
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: Dry-run smoke suite | |
| run: python scripts/reproduce_officeworld.py --suite smoke --dry-run |