Skip to content

Add data processing script #3

Add data processing script

Add data processing script #3

Workflow file for this run

name: Scheduled Data Processing
on:
schedule:
- cron: "0 0 1 * *" # Runs at 00:00 on the first day of every month
push:
branches: [main] # Runs on pushes to the main branch
pull_request:
branches: [main] # Runs on pull requests to the main branch
jobs:
process_data:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: make install
- name: Run data processing script
run: python reweight/logic/process_data.py