Skip to content

Commit 102c498

Browse files
committed
chore: Add .github/workflows/test.yaml
1 parent 03a7ada commit 102c498

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/test.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Python Tests
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Install uv
17+
run: |
18+
curl -LsSf https://astral.sh/uv/install.sh | sh
19+
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
20+
21+
- name: Run Tests
22+
run: |
23+
uv run --python 3.13 python -m unittest discover test -v
24+

0 commit comments

Comments
 (0)