Skip to content

Merge pull request #2 from redis-developer/feat/redisvl-integration-t… #4

Merge pull request #2 from redis-developer/feat/redisvl-integration-t…

Merge pull request #2 from redis-developer/feat/redisvl-integration-t… #4

Workflow file for this run

name: Test Suite
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
env:
UV_VERSION: "0.7.13"
jobs:
test:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: ${{ env.UV_VERSION }}
enable-cache: true
python-version: ${{ matrix.python-version }}
cache-dependency-glob: |
pyproject.toml
uv.lock
- name: Install dependencies
run: |
uv sync
- name: Run tests
run: |
make test