We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1343252 commit 78f822bCopy full SHA for 78f822b
.github/workflows/ci.yaml
@@ -37,18 +37,15 @@ jobs:
37
steps:
38
- uses: actions/checkout@v4
39
40
- - name: Set up Python ${{ matrix.python-version }}
41
- uses: actions/setup-python@v5
42
- with:
43
- python-version: ${{ matrix.python-version }}
44
-
45
- name: Install uv
46
uses: astral-sh/setup-uv@v5
+ with:
+ python-version: ${{ matrix.python-version }}
47
48
- name: Install dependencies
49
run: |
50
- uv pip install --system --upgrade '.[test,docs]'
51
- uv pip list --system
+ uv pip install --upgrade '.[test,docs]'
+ uv pip list
52
53
- name: Test with pytest
54
0 commit comments