We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3e2134 commit cea5a30Copy full SHA for cea5a30
2 files changed
.github/actions/test_artifacts/action.yml
@@ -7,7 +7,7 @@ runs:
7
uses: actions/github-script@v8
8
id: matrix-props
9
env:
10
- MATRIX_PROPS: ${{ toJSON(matrix) }}
+ MATRIX_PROPS: ${{ toJSON(inputs) }}
11
with:
12
# An array-flattening-to-string JavaScript function.
13
script: |
.github/workflows/macvim-buildtest.yaml
@@ -61,13 +61,7 @@ jobs:
61
# Builds and test MacVim
62
build-and-test:
63
if: ${{ !inputs.skip }}
64
-
65
- strategy:
66
- matrix:
67
- include:
68
- - os: ${{ inputs.os }}
69
70
- runs-on: ${{ matrix.os }}
+ runs-on: ${{ inputs.os }}
71
steps:
72
- name: Checkout
73
uses: actions/checkout@v5
0 commit comments