We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5bdfa47 commit 4b5697dCopy full SHA for 4b5697d
1 file changed
.github/workflows/test-pull-request.yml
@@ -31,12 +31,15 @@ jobs:
31
matrix: ${{ steps.set-matrix.outputs.matrix }}
32
needs: unit
33
steps:
34
+ - name: Checkout
35
+ uses: actions/checkout@v2
36
+
37
- name: Set Matrix
38
id: set-matrix
39
run: |
40
matrix="$(jq -r -c '.integration.matrix' ./config.json)"
41
printf "Output: matrix=%s\n" "${matrix}"
- printf "matrix=%s\n" "${matrix}"
42
+ printf "matrix=%s\n" "${matrix}" >> "$GITHUB_OUTPUT"
43
44
integration:
45
name: Integration Test
0 commit comments