Skip to content

fix base image to support nvcc out of the box #143

fix base image to support nvcc out of the box

fix base image to support nvcc out of the box #143

Workflow file for this run

name: Tests configs
on:
push:
branches:
- main
pull_request:
# This will trigger the workflow for pull requests to any branch
types: [opened, synchronize, reopened]
jobs:
gpu-tests:
name: python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Set up Python
run: uv python install 3.10.13
- name: Install the project
run: uv sync --extra sglang # not adding sglang for now as we only test configs
- name: Run tests
run: uv run pytest tests/test_configs.py