Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
- name: Run full check suite (source)
run: ./scripts/check.sh

- name: Install build tooling
run: pip install build

- name: Build wheel
run: python -m build

Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,24 +50,22 @@ deterministic runtime environments.
## 📁 Repository Structure

```

.github/workflows/ CI pipelines (tests, Argo template deploy)
argo/ Argo workflow templates
scripts/ environment & build helper scripts
trading_runtime/ Python runtime entrypoints
tests/ deterministic test data & validation

```

### Key runtime modules

```

trading_runtime/local/ Local execution mode
trading_runtime/argo/ Argo workflow entrypoints
trading_runtime/strategies/ Example strategies
```

````
---

## 📌 Dependency Pinning & Reproducibility

Expand All @@ -77,7 +75,7 @@ Create a `.env` file:

```bash
TRADING_PLATFORM_COMMIT=<commit-sha>
````
```

Generate reproducible environments:

Expand Down