Skip to content

feat: run all ML pipelines using GA #22

feat: run all ML pipelines using GA

feat: run all ML pipelines using GA #22

name: ML Pipelines
on:
schedule:
- cron: '0 * * * *' # Runs every hour
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ml_pipelines:
name: ML Pipelines
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: 0.4.30
- name: Get notebook list
id: ml_pipelines # Changed from ml_pipelines to match matrix reference
run: |
echo "ml_pipelines=$(ls notebooks/*.ipynb | sort -n | jq -R -s -c 'split("\n")[:-1]')" >> $GITHUB_OUTPUT
- name: Set up Python
run: uv python install
- name: Install the project
run: |
uv sync --all-extras --dev
- name: Run pipeline
run: uv run ipython ${{ matrix.ml_pipelines }} # Changed from ml_pipelines to notebook
env:
HOPSWORKS_API_KEY: ${{ secrets.HOPSWORKS_API_KEY }}
strategy: # Moved strategy to correct indentation level
matrix:
ml_pipelines: ${{ fromJson(steps.notebooks.outputs.notebooks) }}

Check failure on line 47 in .github/workflows/feature_pipeline.yaml

View workflow run for this annotation

GitHub Actions / ML Pipelines

Invalid workflow file

The workflow is not valid. .github/workflows/feature_pipeline.yaml (Line: 47, Col: 23): Unrecognized named-value: 'steps'. Located at position 10 within expression: fromJson(steps.notebooks.outputs.notebooks) .github/workflows/feature_pipeline.yaml (Line: 47, Col: 23): Unexpected value '${{ fromJson(steps.notebooks.outputs.notebooks) }}'