Update Reg NMS & SHO guide with expanded details on Best Execution, R… #7
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: 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 |