Skip to content

chore(deps): bump actions/checkout from 4 to 6 #8

chore(deps): bump actions/checkout from 4 to 6

chore(deps): bump actions/checkout from 4 to 6 #8

Workflow file for this run

# @wbx-modified copilot-a3f7·MTN | 2026-04-24 | Python SDK CI
name: python-sdk
on:
push:
branches: [main]
paths:
- "clients/python/**"
- ".github/workflows/python-sdk.yml"
pull_request:
branches: [main]
paths:
- "clients/python/**"
- ".github/workflows/python-sdk.yml"
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: clients/python
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: clients/python/pyproject.toml
- name: Install
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint
run: ruff check recall_client tests
- name: Test
run: pytest -q