File tree 1 file changed +9
-12
lines changed 1 file changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -23,16 +23,15 @@ jobs:
23
23
shell : bash -el {0}
24
24
25
25
steps :
26
- - name : Set up conda and install base
27
- uses : conda-incubator/setup-miniconda@v3
28
- with :
29
- auto-update-conda : true
30
- activate-environment : test
31
- channels : conda-forge
32
-
33
26
- name : Checkout the repository
34
27
uses : actions/checkout@v4
35
28
29
+ - name : Set up Python
30
+ uses : astral-sh/setup-uv@v5
31
+ with :
32
+ python-version : ${{ matrix.python-version }}
33
+ enable-cache : false
34
+
36
35
- name : Install node.js ${{ matrix.node-version }}
37
36
uses : actions/setup-node@v4
38
37
with :
@@ -67,14 +66,12 @@ jobs:
67
66
- name : Install dev Python dependencies & Playwright browsers
68
67
if : success() || failure()
69
68
run : |
70
- conda install -y pip python=${{ matrix.python-version }}
71
- conda info
72
- python -m pip install --editable .[dev]
73
- python -m playwright install chromium
69
+ uv pip install --editable .[dev]
70
+ uv run playwright install chromium
74
71
75
72
- name : Run Playwright & Python tests
76
73
run : |
77
- pytest
74
+ uv run pytest
78
75
79
76
- name : Check repository status
80
77
if : success() || failure()
You can’t perform that action at this time.
0 commit comments