Sessions 5-7a: 955 tests, deployment ready

This commit is contained in:
Kev
2026-06-08 18:35:13 -04:00
parent 06b82624a2
commit 1fa04dc776
371 changed files with 49366 additions and 955 deletions
+32
View File
@@ -0,0 +1,32 @@
name: VYNDR Morning Odds Scan
on:
schedule:
- cron: '0 15 * * *' # 10am ET
workflow_dispatch:
jobs:
morning-odds:
runs-on: ubuntu-latest
defaults:
run:
working-directory: src/services/python
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Fetch morning odds
env:
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
SUPABASE_SERVICE_KEY: ${{ secrets.SUPABASE_SERVICE_KEY }}
ODDS_API_KEY: ${{ secrets.ODDS_API_KEY }}
SHADOW_MODE: ${{ vars.SHADOW_MODE }}
run: |
python -c "import sys; sys.path.insert(0, '.'); from blueprints.odds_scanner import fetch_and_store_odds; fetch_and_store_odds('nba', 'morning_open'); fetch_and_store_odds('mlb', 'morning_open')"