-
Notifications
You must be signed in to change notification settings - Fork 12
47 lines (42 loc) · 1.09 KB
/
ci.yaml
File metadata and controls
47 lines (42 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
name: "CI"
on:
push:
branches:
- "main"
- "pull-request/[0-9]+"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: '3.10'
- name: "Running Lint"
run: |
pip install hatch
hatch run lint:check
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: '3.10'
- name: "Building Docs"
run: |
pip install hatch
hatch run docs:build
test_linux_amd64_gpu_h100_latest:
runs-on: linux-amd64-gpu-h100-latest-1
container:
image: nvcr.io/nvidia/pytorch:25.09-py3
options: "--cap-add=SYS_ADMIN --gpus all"
steps:
- uses: actions/checkout@v5
- name: "Running Tests"
run: |
pip install hatch
hatch run test_cu13:run