File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,11 @@ jobs:
2323 shell : bash -el {0}
2424
2525 steps :
26- - name : Set up conda and install base
27- uses : conda-incubator /setup-miniconda@v3
26+ - name : Set up Python
27+ uses : astral-sh /setup-uv@v5
2828 with :
29- auto-update-conda : true
30- activate-environment : test
31- channels : conda-forge
32-
29+ python-version : ${{ matrix.python-version }}
30+ enable-cache : false
3331 - name : Checkout the repository
3432 uses : actions/checkout@v4
3533
6765 - name : Install dev Python dependencies & Playwright browsers
6866 if : success() || failure()
6967 run : |
70- conda install -y pip python=${{ matrix.python-version }}
71- conda info
72- python -m pip install --editable .[dev]
68+ uv pip install --editable .[dev]
7369 python -m playwright install chromium
7470
7571 - name : Run Playwright & Python tests
You can’t perform that action at this time.
0 commit comments