File tree 4 files changed +23
-26
lines changed
4 files changed +23
-26
lines changed Original file line number Diff line number Diff line change @@ -24,24 +24,24 @@ jobs:
24
24
RUNNER_OS : ' ubuntu'
25
25
USE_CONDA : ' false'
26
26
strategy :
27
- fail-fast : false
27
+ fail-fast : false
28
28
matrix :
29
29
PYTHON_VERSION : ['3.8', '3.9', '3.10']
30
30
timeout-minutes : 20
31
31
steps :
32
32
- name : Checkout branch
33
33
uses : actions/checkout@v1
34
34
- name : Install System Packages
35
- run : |
35
+ run : |
36
36
sudo apt-get update
37
37
sudo apt-get install libegl1-mesa libopengl0
38
38
- name : Install Conda
39
- uses : conda-incubator/setup-miniconda@v2
39
+ uses : conda-incubator/setup-miniconda@v3
40
40
with :
41
41
activate-environment : test
42
42
auto-update-conda : false
43
43
auto-activate-base : false
44
- python-version : ${{ matrix.PYTHON_VERSION }}
44
+ python-version : ${{ matrix.PYTHON_VERSION }}
45
45
- name : Install package and dependencies
46
46
shell : bash -l {0}
47
47
run : |
61
61
xvfb-run --auto-servernum pytest spyder_kernels --color=yes --cov=spyder_kernels -vv || \
62
62
xvfb-run --auto-servernum pytest spyder_kernels --color=yes --cov=spyder_kernels -vv
63
63
- name : Upload coverage to Codecov
64
- uses : codecov/codecov-action@v3
64
+ uses : codecov/codecov-action@v4
65
65
with :
66
66
fail_ci_if_error : false
67
67
verbose : true
Original file line number Diff line number Diff line change @@ -24,33 +24,32 @@ jobs:
24
24
RUNNER_OS : ' ubuntu'
25
25
USE_CONDA : ' true'
26
26
strategy :
27
- fail-fast : false
27
+ fail-fast : false
28
28
matrix :
29
29
PYTHON_VERSION : ['3.8', '3.9', '3.10']
30
30
timeout-minutes : 20
31
31
steps :
32
32
- name : Checkout branch
33
33
uses : actions/checkout@v1
34
34
- name : Install System Packages
35
- run : |
35
+ run : |
36
36
sudo apt-get update
37
37
sudo apt-get install libegl1-mesa libopengl0
38
38
- name : Install Conda
39
- uses : conda-incubator/setup-miniconda@v2
39
+ uses : conda-incubator/setup-miniconda@v3
40
40
with :
41
41
activate-environment : test
42
42
auto-update-conda : true
43
43
auto-activate-base : false
44
44
channels : conda-forge
45
- miniforge-variant : Mambaforge
46
- python-version : ${{ matrix.PYTHON_VERSION }}
45
+ python-version : ${{ matrix.PYTHON_VERSION }}
47
46
- name : Install package dependencies
48
47
shell : bash -l {0}
49
48
run : |
50
- mamba install --file requirements/posix.txt -y -q
49
+ conda install --file requirements/posix.txt -y -q
51
50
- name : Install test dependencies
52
51
shell : bash -l {0}
53
- run : mamba install --file requirements/tests.txt -y -q
52
+ run : conda install --file requirements/tests.txt -y -q
54
53
- name : Install Package
55
54
shell : bash -l {0}
56
55
run : pip install -e .
69
68
xvfb-run --auto-servernum pytest spyder_kernels --color=yes --cov=spyder_kernels -vv || \
70
69
xvfb-run --auto-servernum pytest spyder_kernels --color=yes --cov=spyder_kernels -vv
71
70
- name : Upload coverage to Codecov
72
- uses : codecov/codecov-action@v3
71
+ uses : codecov/codecov-action@v4
73
72
with :
74
73
fail_ci_if_error : false
75
74
verbose : true
Original file line number Diff line number Diff line change @@ -24,29 +24,28 @@ jobs:
24
24
RUNNER_OS : ' macos'
25
25
USE_CONDA : ' true'
26
26
strategy :
27
- fail-fast : false
27
+ fail-fast : false
28
28
matrix :
29
29
PYTHON_VERSION : ['3.8', '3.9', '3.10']
30
30
timeout-minutes : 25
31
31
steps :
32
32
- name : Checkout branch
33
33
uses : actions/checkout@v1
34
34
- name : Install Conda
35
- uses : conda-incubator/setup-miniconda@v2
35
+ uses : conda-incubator/setup-miniconda@v3
36
36
with :
37
37
activate-environment : test
38
38
auto-update-conda : true
39
39
auto-activate-base : false
40
40
channels : conda-forge
41
- miniforge-variant : Mambaforge
42
- python-version : ${{ matrix.PYTHON_VERSION }}
41
+ python-version : ${{ matrix.PYTHON_VERSION }}
43
42
- name : Install package dependencies
44
43
shell : bash -l {0}
45
44
run : |
46
- mamba install --file requirements/posix.txt -y -q
45
+ conda install --file requirements/posix.txt -y -q
47
46
- name : Install test dependencies
48
47
shell : bash -l {0}
49
- run : mamba install --file requirements/tests.txt -y -q
48
+ run : conda install --file requirements/tests.txt -y -q
50
49
- name : Install Package
51
50
shell : bash -l {0}
52
51
run : pip install -e .
65
64
pytest spyder_kernels --color=yes --cov=spyder_kernels -vv || \
66
65
pytest spyder_kernels --color=yes --cov=spyder_kernels -vv
67
66
- name : Upload coverage to Codecov
68
- uses : codecov/codecov-action@v3
67
+ uses : codecov/codecov-action@v4
69
68
with :
70
69
fail_ci_if_error : false
71
70
verbose : true
Original file line number Diff line number Diff line change @@ -24,29 +24,28 @@ jobs:
24
24
RUNNER_OS : ' windows'
25
25
USE_CONDA : ' true'
26
26
strategy :
27
- fail-fast : false
27
+ fail-fast : false
28
28
matrix :
29
29
PYTHON_VERSION : ['3.8', '3.9', '3.10']
30
30
timeout-minutes : 25
31
31
steps :
32
32
- name : Checkout branch
33
33
uses : actions/checkout@v1
34
34
- name : Install Conda
35
- uses : conda-incubator/setup-miniconda@v2
35
+ uses : conda-incubator/setup-miniconda@v3
36
36
with :
37
37
activate-environment : test
38
38
auto-update-conda : true
39
39
auto-activate-base : false
40
40
channels : conda-forge
41
- miniforge-variant : Mambaforge
42
41
python-version : ${{ matrix.PYTHON_VERSION }}
43
42
- name : Install package dependencies
44
43
shell : bash -l {0}
45
- run : mamba install --file requirements/windows.txt -y -q
44
+ run : conda install --file requirements/windows.txt -y -q
46
45
- name : Install test dependencies
47
46
shell : bash -l {0}
48
47
run : |
49
- mamba install --file requirements/tests.txt -y -q
48
+ conda install --file requirements/tests.txt -y -q
50
49
- name : Install Package
51
50
shell : bash -l {0}
52
51
run : pip install -e .
65
64
pytest spyder_kernels --color=yes --cov=spyder_kernels -vv || \
66
65
pytest spyder_kernels --cov=spyder_kernels -vv
67
66
- name : Upload coverage to Codecov
68
- uses : codecov/codecov-action@v3
67
+ uses : codecov/codecov-action@v4
69
68
with :
70
69
fail_ci_if_error : false
71
70
verbose : true
You can’t perform that action at this time.
0 commit comments