Skip to content

Commit e17bf46

Browse files
ci: add pytest workflow
1 parent fd97ac7 commit e17bf46

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/pytest.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Pytest
2+
on: [ push, pull_request ]
3+
jobs:
4+
ruff:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout code
8+
uses: actions/checkout@v4
9+
- name: Set up Python
10+
uses: actions/setup-python@v5
11+
with:
12+
python-version: '3.x'
13+
- name: Install dependencies
14+
run: uv add pytest
15+
- name: Run tests
16+
run: uv run pytest

0 commit comments

Comments
 (0)