-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (34 loc) · 1.04 KB
/
python-package-conda.yml
File metadata and controls
42 lines (34 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Python Syntax Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
syntax-check:
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.11
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Compile-check Python sources
run: |
python -m compileall -q money-machine/src-python
e2e-signal-flow:
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.11
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r money-machine/src-python/requirements.txt
python -m pip install pytest
- name: Run E2E signal-to-execution suite (merge gate)
run: |
python -m pytest -q money-machine/src-python/tests/e2e/test_signal_to_execution_e2e.py