Skip to content

Nightly ML Forecast #53

Nightly ML Forecast

Nightly ML Forecast #53

Workflow file for this run

name: Nightly ML Forecast
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
forecast:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: pip install -r ml_model/requirements.txt
- name: Run forecast model
run: python ml_model/forecast_model.py
env:
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }}