File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33on :
44 push :
5- branches : [main, cerelog-esp-eeg-experiment ]
5+ branches : [main, dev ]
66 pull_request :
77 branches : [main]
88
3030 - name : Run type check
3131 run : npx tsc --noEmit
3232
33+ python-test :
34+ name : Python Bridge Tests
35+ runs-on : ubuntu-latest
36+
37+ steps :
38+ - name : Checkout repository
39+ uses : actions/checkout@v4
40+
41+ - name : Setup Python
42+ uses : actions/setup-python@v5
43+ with :
44+ python-version : ' 3.12'
45+ cache : ' pip'
46+ cache-dependency-path : scripts/requirements-dev.txt
47+
48+ - name : Install dependencies
49+ run : |
50+ python -m pip install --upgrade pip
51+ pip install -r scripts/requirements-dev.txt
52+
53+ - name : Run Python tests
54+ run : |
55+ cd scripts
56+ python -m pytest tests/ -v --tb=short
57+
3358 lint :
3459 name : Lint
3560 runs-on : ubuntu-latest
5378 build :
5479 name : Build
5580 runs-on : ubuntu-latest
56- needs : [test, lint]
81+ needs : [test, python-test, lint]
5782
5883 steps :
5984 - name : Checkout repository
You can’t perform that action at this time.
0 commit comments