Skip to content

Commit 8966a73

Browse files
committed
Try setup-uv action.
1 parent 61827d6 commit 8966a73

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,16 @@ jobs:
3333
persist-credentials: false
3434

3535
- name: Set up Python ${{ matrix.python-version }}
36-
uses: actions/setup-python@v7
36+
uses: actions/setup-uv@v9.0.0
3737
with:
3838
python-version: ${{ matrix.python-version }}
39-
cache: pip
40-
cache-dependency-path: setup.cfg
39+
cache: auto
4140

4241
- name: Install dependencies
43-
run: python -m pip install -e .
42+
run: uv pip install -e .
4443

4544
- name: List installed packages
46-
run: python -m pip list
45+
run: uv pip list
4746

4847
- name: Run tests
4948
run: python -m unittest discover

0 commit comments

Comments
 (0)