@@ -122,9 +122,9 @@ jobs:
122
122
python-version : 3.8
123
123
- os : macos-latest
124
124
python-version : ' 3.10'
125
- - os : windows-2019
125
+ - os : windows-latest
126
126
python-version : 3.8
127
- - os : windows-2019
127
+ - os : windows-latest
128
128
python-version : ' 3.10'
129
129
steps :
130
130
- uses : actions/checkout@v3
@@ -142,7 +142,7 @@ jobs:
142
142
conda create -y -n scsenv python=${{ matrix.python-version }} -c conda-forge
143
143
conda activate scsenv
144
144
conda install -y scs lapack cvxpy -c conda-forge
145
- if : ${{ matrix.os == 'windows-2019 ' }}
145
+ if : ${{ matrix.os == 'windows-latest ' }}
146
146
shell : bash
147
147
- uses : ./.github/actions/install-main-dependencies
148
148
with :
@@ -154,15 +154,15 @@ jobs:
154
154
os : ${{ matrix.os }}
155
155
- name : Run lint
156
156
run : |
157
- if [ "${{ matrix.os }}" == "windows-2019 " ]; then
157
+ if [ "${{ matrix.os }}" == "windows-latest " ]; then
158
158
source "$CONDA/etc/profile.d/conda.sh"
159
159
conda activate scsenv
160
160
fi
161
161
make lint
162
162
shell : bash
163
163
- name : Run mypy
164
164
run : |
165
- if [ "${{ matrix.os }}" == "windows-2019 " ]; then
165
+ if [ "${{ matrix.os }}" == "windows-latest " ]; then
166
166
source "$CONDA/etc/profile.d/conda.sh"
167
167
conda activate scsenv
168
168
fi
@@ -179,7 +179,7 @@ jobs:
179
179
if : ${{ !cancelled() }}
180
180
- name : Deprecation Messages
181
181
run : |
182
- if [ "${{ matrix.os }}" == "windows-2019 " ]; then
182
+ if [ "${{ matrix.os }}" == "windows-latest " ]; then
183
183
source "$CONDA/etc/profile.d/conda.sh"
184
184
conda activate scsenv
185
185
fi
@@ -188,7 +188,7 @@ jobs:
188
188
shell : bash
189
189
- name : Coverage combine
190
190
run : |
191
- if [ "${{ matrix.os }}" == "windows-2019 " ]; then
191
+ if [ "${{ matrix.os }}" == "windows-latest " ]; then
192
192
source "$CONDA/etc/profile.d/conda.sh"
193
193
conda activate scsenv
194
194
fi
@@ -204,7 +204,7 @@ jobs:
204
204
env :
205
205
PYTHONWARNINGS : default
206
206
run : |
207
- if [ "${{ matrix.os }}" == "windows-2019 " ]; then
207
+ if [ "${{ matrix.os }}" == "windows-latest " ]; then
208
208
source "$CONDA/etc/profile.d/conda.sh"
209
209
conda activate scsenv
210
210
fi
@@ -333,11 +333,11 @@ jobs:
333
333
path : /tmp/m310
334
334
- uses : actions/download-artifact@v3
335
335
with :
336
- name : windows-2019 -3.8
336
+ name : windows-latest -3.8
337
337
path : /tmp/w38
338
338
- uses : actions/download-artifact@v3
339
339
with :
340
- name : windows-2019 -3.10
340
+ name : windows-latest -3.10
341
341
path : /tmp/w310
342
342
- name : Install Dependencies
343
343
run : pip install -U coverage coveralls diff-cover
0 commit comments