Skip to content

feat: Support multiple --url Endpoints #1922

feat: Support multiple --url Endpoints

feat: Support multiple --url Endpoints #1922

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
name: "Run Unit Tests"
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
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 unit tests and component integration tests
run: |
make test-ci PYTHON_VERSION=${{ matrix.python-version }}
- name: Upload results to Codecov
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: ai-dynamo/aiperf