File tree Expand file tree Collapse file tree 3 files changed +11
-13
lines changed Expand file tree Collapse file tree 3 files changed +11
-13
lines changed Original file line number Diff line number Diff line change @@ -26,14 +26,13 @@ jobs:
26
26
- uses : actions/checkout@v2
27
27
28
28
- name : Setup mamba
29
- uses : conda-incubator /setup-miniconda@v2
29
+ uses : mamba-org /setup-micromamba@v1
30
30
with :
31
- miniforge-variant : Mambaforge
32
- channels : conda-forge
31
+ environment-name : voila
33
32
34
33
- name : Create the conda environment
35
34
shell : bash -l {0}
36
- run : mamba install -q python=${{ matrix.python_version }} pip jupyterlab_pygments==0.1.0 pytest-cov pytest-rerunfailures nodejs=18 yarn=1 ipywidgets matplotlib xeus-cling "traitlets>=5.0.3,<6" ipykernel
35
+ run : micromamba install -q python=${{ matrix.python_version }} pip jupyterlab_pygments==0.1.0 pytest-cov pytest-rerunfailures nodejs=18 yarn=1 ipywidgets matplotlib xeus-cling "traitlets>=5.0.3,<6" ipykernel -c conda-forge
37
36
38
37
- name : Install dependencies
39
38
shell : bash -l {0}
@@ -85,14 +84,13 @@ jobs:
85
84
- uses : actions/checkout@v2
86
85
87
86
- name : Setup mamba
88
- uses : conda-incubator /setup-miniconda@v2
87
+ uses : mamba-org /setup-micromamba@v1
89
88
with :
90
- miniforge-variant : Mambaforge
91
- channels : conda-forge
89
+ environment-name : voila
92
90
93
91
- name : Create the conda environment
94
92
shell : bash -l {0}
95
- run : mamba install -q python=${{ matrix.python_version }} pip jupyterlab_pygments==0.1.0 pytest-cov pytest-rerunfailures nodejs=18 yarn=1 ipywidgets matplotlib xeus-cling "traitlets>=5.0.3,<6" ipykernel
93
+ run : micromamba install -q python=${{ matrix.python_version }} pip jupyterlab_pygments==0.1.0 pytest-cov pytest-rerunfailures nodejs=18 yarn=1 ipywidgets matplotlib xeus-cling "traitlets>=5.0.3,<6" ipykernel -c conda-forge
96
94
97
95
- name : Install dependencies
98
96
shell : bash -l {0}
Original file line number Diff line number Diff line change 46
46
sha256sum * | tee SHA256SUMS
47
47
48
48
- name : Upload distributions
49
- uses : actions/upload-artifact@v2
49
+ uses : actions/upload-artifact@v3
50
50
with :
51
51
name : dist ${{ github.run_number }}
52
52
path : ./dist
76
76
with :
77
77
python-version : ${{ matrix.python }}
78
78
architecture : ' x64'
79
- - uses : actions/download-artifact@v2
79
+ - uses : actions/download-artifact@v3
80
80
with :
81
81
name : dist ${{ github.run_number }}
82
82
path : ./dist
Original file line number Diff line number Diff line change @@ -62,23 +62,23 @@ jobs:
62
62
63
63
- name : Upload Playwright Test assets
64
64
if : always()
65
- uses : actions/upload-artifact@v2
65
+ uses : actions/upload-artifact@v3
66
66
with :
67
67
name : voila-test-assets
68
68
path : |
69
69
ui-tests/test-results
70
70
71
71
- name : Upload Playwright Benchmark report
72
72
if : always()
73
- uses : actions/upload-artifact@v2
73
+ uses : actions/upload-artifact@v3
74
74
with :
75
75
name : voila-benchmark-report
76
76
path : |
77
77
ui-tests/benchmark-results
78
78
79
79
- name : Upload Playwright Test report
80
80
if : always()
81
- uses : actions/upload-artifact@v2
81
+ uses : actions/upload-artifact@v3
82
82
with :
83
83
name : voila-test-report
84
84
path : |
You can’t perform that action at this time.
0 commit comments