Skip to content

Commit 515c561

Browse files
committed
Use uv for tests
1 parent a1c374a commit 515c561

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ jobs:
1010
- name: Checkout code
1111
uses: actions/checkout@v4
1212

13-
- name: Install packages
13+
14+
- name: Install uv
1415
run: |
15-
python -m venv venv
16-
. venv/bin/activate
17-
pip install -e .[dev]
16+
curl -LsSf https://astral.sh/uv/install.sh | sh
17+
1818
1919
- name: Run tests
2020
run: |
21-
. venv/bin/activate
22-
pytest
21+
uv run pytest

0 commit comments

Comments
 (0)