We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbf0cf6 commit baf6244Copy full SHA for baf6244
1 file changed
.github/workflows/tox_matrix.yml
@@ -41,15 +41,12 @@ jobs:
41
cache: 'pip' # caching pip dependencies
42
- name: Install requirements
43
run: |
44
- pip install wheel
45
- pip install tox --constraint requirements-dev.txt
+ pip install uv
46
- uses: actions/github-script@v7
47
id: tox-env
48
with:
49
result-encoding: string
50
script: |
51
return "py${{matrix.python-version}}".replace('.','')
52
- name: Run tox
53
- run: tox -e ${{steps.tox-env.outputs.result}} -vvv
54
- env:
55
- PIP_EXTRA_INDEX_URL: ${{vars.PIP_EXTRA_INDEX_URL}}
+ run: uv run --only-group=tox-uv --frozen tox -e ${{steps.tox-env.outputs.result}} --runner uv-venv-lock-runner -vvv
0 commit comments