Skip to content

Commit 8e02b2d

Browse files
committed
✅ Add GitHub Actions workflow for UV tests
1 parent c52520d commit 8e02b2d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/uv-tests.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Tests with UV
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: astral-sh/setup-uv@v5
15+
- uses: actions/setup-python@v3
16+
- uses: extractions/setup-just@v2
17+
- run: uv tool install pre-commit
18+
- run: just test

0 commit comments

Comments
 (0)