Skip to content

feat: Update Sourcer interface for propagating totalPartitions #694

feat: Update Sourcer interface for propagating totalPartitions

feat: Update Sourcer interface for propagating totalPartitions #694

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: Python version
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/pynumaflow/
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v3
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --group dev
- name: Run tests
run: make test