Skip to content

feature-pipeline

feature-pipeline #2

name: ethereum-returns-feature-pipeline
on:
schedule:
- cron: '0 * * * *'
workflow_dispatch:
env:
PYTHON_VERSION: 3.10
jobs:
feature_pipeline:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python 3.10
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_feature_pipeline.txt
- name: Execute Python workflows from bash script
env:
HOPSWORKS_API_KEY: ${{ secrets.HOPSWORKS_API_KEY }}
run: jupyter nbconvert --to notebook --execute notebooks/04_feature_pipeline.ipynb