feat: mind/memory MVP + trajectory archive (PR6 of OpenAI Agents SDK migration) #13
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: verify | |
| on: | |
| pull_request: | |
| branches: [master] | |
| push: | |
| branches: [master] | |
| workflow_dispatch: | |
| # Cancel in-progress runs on the same PR/branch when a new commit lands. | |
| concurrency: | |
| group: verify-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v3 | |
| with: | |
| enable-cache: true | |
| cache-dependency-glob: pyproject.toml | |
| - name: Create virtual environment | |
| run: uv venv | |
| - name: Install project + dev dependencies | |
| run: uv pip install --python .venv/bin/python -e ".[dev]" | |
| - name: Run scripts/verify.sh | |
| run: | | |
| source .venv/bin/activate | |
| bash scripts/verify.sh |