Recalcular Rankings #80
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Recalcular Rankings | |
on: | |
workflow_run: | |
workflows: ["Preprocesar Datos"] | |
types: | |
- completed | |
workflow_dispatch: # Permite ejecución manual | |
jobs: | |
recalcular-rankings: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Configurar Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Instalar dependencias | |
run: | | |
python -m pip install --upgrade pip | |
pip install pandas | |
- name: Recalcular Rankings | |
run: python ./codigo/routines/recalcular_rankings.py | |
# Asume que recalcular_rankings.py ahora verifica la presencia de nuevos datos |