We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b228b1 commit baaae00Copy full SHA for baaae00
1 file changed
.github/workflows/os-blas-test-matrix.yml
@@ -171,7 +171,10 @@ jobs:
171
name: slycot-wheels
172
path: slycot-wheels
173
- id: set-matrix
174
- run: echo "matrix=$(python3 .github/scripts/set-pip-test-matrix.py)" >> $GITHUB_OUTPUT
+ run: |
175
+ TEMPFILE="$(mktemp)"
176
+ python3 .github/scripts/set-pip-test-matrix.py | tee $TEMPFILE
177
+ echo "matrix=$TEMPFILE" >> $GITHUB_OUTPUT
178
179
180
create-conda-test-matrix:
@@ -195,7 +198,10 @@ jobs:
195
198
name: slycot-conda-pkgs
196
199
path: slycot-conda-pkgs
197
200
- run: echo "matrix=$(python3 .github/scripts/set-conda-test-matrix.py)" >> $GITHUB_OUTPUT
201
202
203
+ python3 .github/scripts/set-conda-test-matrix.py | tee $TEMPFILE
204
205
206
207
test-wheel:
0 commit comments