Skip to content

Commit b8281bf

Browse files
committed
chore: actions testing
1 parent 956a526 commit b8281bf

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/tests.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: run test
2+
3+
on: [push]
4+
5+
jobs:
6+
run-tests:
7+
runs-on: [self-hosted, ARM64]
8+
steps:
9+
- uses: actions/checkout@v5
10+
11+
- name: Install uv
12+
uses: astral-sh/setup-uv@v7
13+
14+
- name: uv sync
15+
run: uv sync
16+
17+
- name: run tests
18+
run: uv run pytest

0 commit comments

Comments
 (0)