use python versions on model server tests

This commit is contained in:
Adil Hafeez 2025-08-11 13:05:03 -07:00
parent 2324f7fb29
commit 05c2741058
No known key found for this signature in database
GPG key ID: 9B18EF7691369645

View file

@ -9,6 +9,10 @@ on:
jobs:
e2e_model_server_tests:
runs-on: ubuntu-latest-m
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
defaults:
run:
working-directory: ./tests/modelserver
@ -20,7 +24,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
python-version: ${{ matrix.python-version }}
cache: "pip" # auto-caches based on requirements files
- name: install poetry
run: |