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 db19959 commit a0f5917Copy full SHA for a0f5917
1 file changed
.github/workflows/test_and_cov.yml
@@ -29,6 +29,11 @@ jobs:
29
with:
30
python-version: ${{ matrix.python-version }}
31
32
+ - name: Install uv
33
+ uses: astral-sh/setup-uv@v5
34
+ with:
35
+ python-version: ${{ matrix.python-version }}
36
+
37
- name: install pdm and dependencies
38
run: make deps
39
@@ -39,6 +44,9 @@ jobs:
44
mkdir -p "$HF_HOME"
40
45
[ -z "$(ls "$HF_HOME")" ] || rm "${HF_HOME:?}/*" -rf && true
41
46
47
+ - name: Configure pdm to use uv
48
+ run: pdm config use_uv true
49
42
50
- name: run tests
43
51
run: pdm run pytest --enable-coredumpy --coredumpy-dir ${{ env.COREDUMPY_DUMP_DIR }}
52
0 commit comments