Skip to content

Commit 800a810

Browse files
committed
add workflow
1 parent 8c3b4f5 commit 800a810

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: Test
2+
3+
on:
4+
push
5+
6+
7+
jobs:
8+
test:
9+
10+
name: python
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Install uv
17+
uses: astral-sh/setup-uv@v6
18+
19+
- name: Install the project
20+
run: uv sync --locked --all-extras --dev
21+
22+
- name: Run tests
23+
# For example, using `pytest`
24+
run: uv run pytest

0 commit comments

Comments
 (0)