[codex] Pass proxy environment to CCXT loader #263
Workflow file for this run
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: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| cache: pip | |
| - name: Install dependencies | |
| run: pip install -e ".[dev]" | |
| - name: Syntax check | |
| run: | | |
| cd agent | |
| python -m py_compile cli.py | |
| python -m py_compile api_server.py | |
| python -m py_compile mcp_server.py | |
| python -m py_compile src/agent/loop.py | |
| python -m py_compile src/tools/__init__.py | |
| python -m py_compile backtest/runner.py | |
| - name: Run tests | |
| run: pytest --ignore=agent/tests/e2e_backtest --tb=short -q | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: npm | |
| cache-dependency-path: frontend/package-lock.json | |
| - name: Frontend build | |
| run: | | |
| cd frontend | |
| npm ci | |
| npm run build |