Skip to content

Commit f7d0cd7

Browse files
committed
[CI] Test job
1 parent 49cf2b4 commit f7d0cd7

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/test.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Tests
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
pull_request:
7+
8+
env:
9+
NPROCS_LIMIT_LINK: 8
10+
SRUN: ${HOME}/srun.sh
11+
12+
jobs:
13+
CPU:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v5
18+
19+
- name: Install uv
20+
uses: astral-sh/setup-uv@v6
21+
22+
- name: Setup project
23+
run: |
24+
git submodule update --init
25+
uv sync --extra cpu
26+
27+
- name: Run KernelBench
28+
run: uv run ${{ github.workspace }}/infra/scripts/run_kernel_bench.py

0 commit comments

Comments
 (0)