Skip to content

debezium/dbz#2128 feat: add PGVector adapter and core logging improve… #43

debezium/dbz#2128 feat: add PGVector adapter and core logging improve…

debezium/dbz#2128 feat: add PGVector adapter and core logging improve… #43

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
qa:
name: Code Quality and Tests (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: "pyproject.toml"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Verify code formatting (Ruff)
run: ruff format --check .
- name: Lint with Ruff
run: ruff check .
- name: Type check with MyPy
run: mypy .
- name: Run unit tests
run: pytest