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 a1ea4e7 commit 6a0ff2eCopy full SHA for 6a0ff2e
1 file changed
.github/workflows/ci.yml
@@ -105,14 +105,15 @@ jobs:
105
with:
106
packages: make
107
-
108
- name: Install uv
109
- uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
+ name: Install Python
+ uses: actions/setup-python@v6
110
111
python-version: ${{ matrix.python-version }}
112
- cache-suffix: unittest
+ cache: 'pip' # caching pip dependencies
113
114
name: Install dependencies
115
run: |
116
+ pip install --upgrade pip
117
pip install -e ./
118
pip install --group dev
119
0 commit comments