Add agent run comparison tool (diff two episodes) #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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Validate docker-compose | |
| run: docker compose config --quiet | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Lint test files | |
| run: | | |
| python -m py_compile tests/conftest.py | |
| python -m py_compile tests/test_health.py | |
| python -m py_compile tests/test_episode_flow.py | |
| python -m py_compile tests/test_policy_flow.py | |
| python -m py_compile tests/test_end_to_end.py |