Skip to content

feat: sdg component #344

feat: sdg component

feat: sdg component #344

---
name: Base Image Validation
on:
push:
branches:
- 'main'
- 'release-*'
tags:
- 'v*'
pull_request:
branches:
- 'main'
- 'release-*'
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@v6
- 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