Skip to content

Initialize FIX message parser and execution break simulator #1

Initialize FIX message parser and execution break simulator

Initialize FIX message parser and execution break simulator #1

Workflow file for this run

name: FIX Parser CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run tests
run: pytest
- name: Run end-to-end sample pipeline
run: make run