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
+31
View File
@@ -0,0 +1,31 @@
name: VYNDR Reporter Monitoring
on:
schedule:
- cron: '*/15 19-5 * * *' # Every 15min during game window
workflow_dispatch:
jobs:
reporter-poll:
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: Poll reporter feeds
env:
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
SUPABASE_SERVICE_KEY: ${{ secrets.SUPABASE_SERVICE_KEY }}
SHADOW_MODE: ${{ vars.SHADOW_MODE }}
run: |
python -c "import sys; sys.path.insert(0, '.'); from blueprints.reporter_monitor import poll_reporter_feeds; poll_reporter_feeds('nba'); poll_reporter_feeds('mlb')"