File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,10 @@ jobs:
171
171
name : slycot-wheels
172
172
path : slycot-wheels
173
173
- id : set-matrix
174
- run : echo "matrix=$(python3 .github/scripts/set-pip-test-matrix.py)" >> $GITHUB_OUTPUT
174
+ run : |
175
+ TEMPFILE="$(mktemp)"
176
+ python3 .github/scripts/set-pip-test-matrix.py | tee $TEMPFILE
177
+ echo "matrix=(cat $TEMPFILE)" >> $GITHUB_OUTPUT
175
178
176
179
177
180
create-conda-test-matrix :
@@ -195,7 +198,10 @@ jobs:
195
198
name : slycot-conda-pkgs
196
199
path : slycot-conda-pkgs
197
200
- id : set-matrix
198
- run : echo "matrix=$(python3 .github/scripts/set-conda-test-matrix.py)" >> $GITHUB_OUTPUT
201
+ run : |
202
+ TEMPFILE="$(mktemp)"
203
+ python3 .github/scripts/set-conda-test-matrix.py | tee $TEMPFILE
204
+ echo "matrix=$(cat TEMPFILE)" >> $GITHUB_OUTPUT
199
205
200
206
201
207
test-wheel :
You can’t perform that action at this time.
0 commit comments