Skip to content

Commit c6cceaf

Browse files
committed
add pytest workflow
Signed-off-by: Xavier Ruiz <xavier.ruiz@ekumenlabs.com>
1 parent c60ecbc commit c6cceaf

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/pytest.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: pytest
2+
3+
on:
4+
push:
5+
branches: [ next-gen ]
6+
pull_request:
7+
branches: [ next-gen ]
8+
9+
jobs:
10+
pytest:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Install uv
16+
uses: astral-sh/setup-uv@v5
17+
with:
18+
python-version: "3.12"
19+
enable-cache: true
20+
21+
- name: Install project dependencies
22+
run: uv sync --group dev
23+
24+
- name: Run pytest
25+
run: uv run pytest

0 commit comments

Comments
 (0)