Skip to content

Add Pro C++ TMP, Lock-Free Queue, and Market Making Model #2

Add Pro C++ TMP, Lock-Free Queue, and Market Making Model

Add Pro C++ TMP, Lock-Free Queue, and Market Making Model #2

Workflow file for this run

name: Quant Prep CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install numpy pandas pytest
- name: Run Unit Tests
run: |
python -m pytest tests/
- name: Verify C++ Examples
run: |
g++ -o memory_pool 06_quantitative_development/cpp_low_latency/examples/memory_pool.cpp
./memory_pool