1 parent 61827d6 commit 8966a73Copy full SHA for 8966a73
1 file changed
.github/workflows/python-package.yml
@@ -33,17 +33,16 @@ jobs:
33
persist-credentials: false
34
35
- name: Set up Python ${{ matrix.python-version }}
36
- uses: actions/setup-python@v7
+ uses: actions/setup-uv@v9.0.0
37
with:
38
python-version: ${{ matrix.python-version }}
39
- cache: pip
40
- cache-dependency-path: setup.cfg
+ cache: auto
41
42
- name: Install dependencies
43
- run: python -m pip install -e .
+ run: uv pip install -e .
44
45
- name: List installed packages
46
- run: python -m pip list
+ run: uv pip list
47
48
- name: Run tests
49
run: python -m unittest discover
0 commit comments