Skip to content

Add agent run comparison tool (diff two episodes) #11

Add agent run comparison tool (diff two episodes)

Add agent run comparison tool (diff two episodes) #11

Workflow file for this run

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