Skip to content

feat: Add native ollama_generate endpoint type support #374

feat: Add native ollama_generate endpoint type support

feat: Add native ollama_generate endpoint type support #374

# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
name: "Run Integration Tests"
on:
pull_request:
push:
branches:
- main
jobs:
integration-tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make first-time-setup PYTHON_VERSION=${{ matrix.python-version }}
- name: Run integration tests
run: |
if [ "${{ matrix.os }}" = "macos-latest" ]; then
make integration-tests-ci-macos
else
make integration-tests-ci
fi