We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9270097 commit ea0fa56Copy full SHA for ea0fa56
.github/workflows/ci.yml
@@ -25,9 +25,7 @@ jobs:
25
uses: astral-sh/setup-uv@v5
26
with:
27
version: "latest"
28
-
29
- - name: Set up Python ${{ matrix.python-version }}
30
- run: uv python install ${{ matrix.python-version }}
+ python-version: ${{ matrix.python-version }}
31
32
- name: Install system dependencies (Ubuntu)
33
if: runner.os == 'Linux'
@@ -42,11 +40,11 @@ jobs:
42
40
43
41
- name: Install dependencies
44
run: |
45
- uv sync --all-extras --python ${{ matrix.python-version }}
+ uv sync --all-extras
46
47
- name: Run tests
48
49
- uv run --python ${{ matrix.python-version }} pytest -v
+ uv run pytest -v
50
51
lint:
52
name: Lint and Format Check
0 commit comments