We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8725bb2 commit c92de62Copy full SHA for c92de62
1 file changed
.github/workflows/slycot-build-and-test.yml
@@ -197,9 +197,7 @@ jobs:
197
name: slycot-wheels
198
path: slycot-wheels
199
- id: set-matrix
200
- run: |
201
- matrix=$(python3 .github/scripts/set-pip-test-matrix.py)
202
- echo "::set-output name=matrix::$matrix"
+ run: echo "matrix=$(python3 .github/scripts/set-pip-test-matrix.py)" >> $GITHUB_OUTPUT
203
204
create-conda-test-matrix:
205
name: Create conda test matrix
@@ -217,9 +215,7 @@ jobs:
217
215
name: slycot-conda-pkgs
218
216
path: slycot-conda-pkgs
219
220
221
- matrix=$(python3 .github/scripts/set-conda-test-matrix.py)
222
+ run: echo "matrix=$(python3 .github/scripts/set-conda-test-matrix.py)" >> $GITHUB_OUTPUT
223
224
225
test-wheel:
0 commit comments