We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31b9f75 commit 6aeb6deCopy full SHA for 6aeb6de
.github/workflows/datachannel_echo-test.yml
@@ -64,16 +64,14 @@ jobs:
64
needs: [interop-tests]
65
steps:
66
- uses: actions/checkout@v2
67
- with:
68
- ref: testresults
69
- name: Create results file from interop test outputs
70
run: |
71
echo "Collating results from:"
72
echo "results=${{ toJSON(needs.interop-tests.outputs.results) }}"
73
echo "| Server | Client | Test Result |" > DataChannel_Echo_test_results.md
74
echo "|--------|--------|-------------|" >> DataChannel_Echo_test_results.md
75
76
- # Read results from the job output
+ # Read results from the job output
77
IFS=' ' read -r -a results_array <<< "${{ needs.interop-tests.outputs.results }}"
78
for result in "${results_array[@]}"; do
79
IFS=',' read -r server client test_result <<< "$result"
0 commit comments