Skip to content

feat: add RAG pipeline components and multi-step pipeline #265

feat: add RAG pipeline components and multi-step pipeline

feat: add RAG pipeline components and multi-step pipeline #265

---
name: Base Image Validation
on:
push:
pull_request:
paths:
- 'components/**'
- 'pipelines/**'
- 'scripts/validate_base_images/**'
- '.github/scripts/utils/**'
- '.github/workflows/base-image-check.yml'
- '.github/actions/setup-python-ci/**'
- 'pyproject.toml'
- 'uv.lock'
# Cancel in-progress runs when a new commit is pushed to the same PR
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
PYTHONPATH: ${{ github.workspace }}
jobs:
validate-base-images:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.11", "3.13"]
name: Validate Base Images (Python ${{ matrix.python-version }})
steps:
- name: Checkout Repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Python CI
uses: ./.github/actions/setup-python-ci
with:
python-version: ${{ matrix.python-version }}
- name: Run base image validation
run: uv run python -m scripts.validate_base_images.validate_base_images