File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed
Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -97,12 +97,12 @@ jobs:
9797 run :
9898 shell : bash
9999
100- needs :
100+ needs :
101101 - generate-matrix
102102
103103 strategy :
104104 fail-fast : false # Keep running even if one component fails
105- matrix :
105+ matrix :
106106 include : ${{ fromJson(needs.generate-matrix.outputs.test-matrix) }}
107107
108108 steps :
@@ -254,7 +254,7 @@ jobs:
254254 AWS_REGION : " ${{ env.AWS_REGION }}"
255255 run : |
256256 echo "Running certification tests for ${{ matrix.component }} ... "
257- echo "Source Pacakge : " ${{ matrix.source-pkg }}
257+ echo "Source Package : " ${{ matrix.source-pkg }}
258258 export GOLANG_PROTOBUF_REGISTRATION_CONFLICT=ignore
259259 set +e
260260 gotestsum --jsonfile ${{ env.TEST_OUTPUT_FILE_PREFIX }}_certification.json \
@@ -334,7 +334,7 @@ jobs:
334334 name : Post-completion
335335 runs-on : ubuntu-22.04
336336 if : always()
337- needs :
337+ needs :
338338 - certification
339339 - generate-matrix
340340 steps :
Original file line number Diff line number Diff line change @@ -100,12 +100,12 @@ jobs:
100100 run :
101101 shell : bash
102102
103- needs :
103+ needs :
104104 - generate-matrix
105105
106106 strategy :
107107 fail-fast : false # Keep running even if one component fails
108- matrix :
108+ matrix :
109109 include : ${{ fromJson(needs.generate-matrix.outputs.test-matrix) }}
110110
111111 steps :
@@ -267,7 +267,7 @@ jobs:
267267 - name : Run tests
268268 continue-on-error : true
269269 run : |
270- set -e
270+ set -e
271271 KIND=$(echo ${{ matrix.component }} | cut -d. -f1)
272272 NAME=$(echo ${{ matrix.component }} | cut -d. -f2-)
273273 KIND_UPPER="$(tr '[:lower:]' '[:upper:]' <<< ${KIND:0:1})${KIND:1}"
@@ -277,7 +277,7 @@ jobs:
277277 fi
278278
279279 echo "Running tests for Test${KIND_UPPER}Conformance/${KIND}/${NAME} ... "
280- echo "Source Pacakge : " ${{ matrix.source-pkg }}
280+ echo "Source Package : " ${{ matrix.source-pkg }}
281281
282282 set +e
283283 gotestsum --jsonfile ${{ env.TEST_OUTPUT_FILE_PREFIX }}_conformance.json \
@@ -335,13 +335,13 @@ jobs:
335335 name : result_files
336336 path : tmp/result_files
337337 retention-days : 1
338-
338+
339339 - name : Prepare coverage report file to upload
340340 if : github.event_name == 'schedule'
341341 run : |
342342 mkdir -p tmp/conf_code_cov
343343 cp cover.out tmp/conf_code_cov/${{ env.SOURCE_PATH_LINEAR }}.out
344-
344+
345345 - name : Upload coverage report file
346346 uses : actions/upload-artifact@v3
347347 if : github.event_name == 'schedule'
You can’t perform that action at this time.
0 commit comments