Skip to content

Commit 373a982

Browse files
committed
Add test CI
1 parent 9c352fc commit 373a982

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/test.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Example
2+
3+
jobs:
4+
uv-example:
5+
name: python
6+
runs-on: ubuntu-latest
7+
8+
steps:
9+
- uses: actions/checkout@v4
10+
11+
- name: Install uv
12+
uses: astral-sh/setup-uv@v5
13+
14+
- name: Install the project
15+
run: uv sync --dev
16+
17+
- name: Run tests
18+
# For example, using `pytest`
19+
run: uv run pytest tests

0 commit comments

Comments
 (0)