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 72ecf94 commit 53fde42Copy full SHA for 53fde42
.github/workflows/ci.yml
@@ -35,7 +35,7 @@ jobs:
35
steps:
36
- run: echo "$GITHUB_EVENT_NAME"
37
- id: step
38
- run: echo "matrix_os=[macos-13, ubuntu-22.04, windows-2022]" >> $GITHUB_OUTPUT
+ run: echo "matrix_os=\"[\"macos-13\", \"ubuntu-22.04\", \"windows-2022\"]\"" >> $GITHUB_OUTPUT
39
40
41
whl_3_8:
@@ -45,7 +45,7 @@ jobs:
45
fail-fast: false
46
matrix:
47
# os: [macos-13-xlarge, ubuntu-22.04, windows-2022]
48
- os: ${{fromJson(needs.matrix_config.outputs.matrix_os)}}
+ os: ${{ fromJson(needs.matrix_config.outputs.matrix_os) }}
49
minor: [8]
50
runs-on: ${{ matrix.os }}
51
0 commit comments