Skip to content

Commit 1e43821

Browse files
committed
fix: fix pytest workflow uv installation
1 parent 8d5fe60 commit 1e43821

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/pytest.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v4
2222
- name: Install UV
23-
run: astral-sh/setup-uv@v5
24-
python-version: ${{ matrix.python-version }}
23+
uses: astral-sh/setup-uv@v5
24+
with:
25+
python-version: ${{ matrix.python-version }}
2526
- uses: astral-sh/ruff-action@v3
2627
- name: Run the tests
2728
run: pytest --cov --cov-report=json:coverage.json tests/

0 commit comments

Comments
 (0)