File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed
Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,16 @@ jobs:
1313 steps :
1414 - uses : actions/checkout@v4
1515
16+ - name : Install uv
17+ uses : astral-sh/setup-uv@v5
18+
1619 - name : Set up Python ${{ matrix.python-version }}
1720 uses : actions/setup-python@v5
1821 with :
1922 python-version : ${{ matrix.python-version }}
2023
2124 - name : Install dependencies
22- run : |
23- python -m pip install --upgrade pip
24- pip install tox tox-gh-actions
25+ run : uv pip install tox tox-gh-actions tox-uv --system
26+
2527 - name : Test with tox without uploading coverage
2628 run : tox
Original file line number Diff line number Diff line change @@ -27,15 +27,16 @@ jobs:
2727 echo "CODECOV_BRANCH=$(echo ${GITHUB_HEAD_REF} | tr / -)" \
2828 >> $GITHUB_ENV
2929
30+ - name : Install uv
31+ uses : astral-sh/setup-uv@v5
32+
3033 - name : Set up Python ${{ matrix.python-version }}
3134 uses : actions/setup-python@v5
3235 with :
3336 python-version : ${{ matrix.python-version }}
3437
3538 - name : Install dependencies
36- run : |
37- python -m pip install --upgrade pip
38- pip install tox tox-gh-actions
39+ run : uv pip install tox tox-gh-actions tox-uv --system
3940
4041 - name : Test with tox and upload coverage results
4142 run : tox -- --codecov --codecov-token=${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments