Skip to content

Commit 549b31f

Browse files
committed
[Breaking Change] (config) Add processing about downloading needed shell script.
1 parent db5c96d commit 549b31f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/organize_and_generate_test_cov_reports.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ jobs:
5151
pip3 install coverage
5252
5353
- name: Combine all testing coverage data files with test type and runtime OS, and convert to XML format file finally
54-
run: bash ./scripts/ci/combine_coverage_reports.sh ${{ inputs.test_type }}
54+
run: |
55+
curl https://raw.githubusercontent.com/Chisanan232/GitHub-Action_Workflow-Template-Python/develop/scripts/ci/combine_coverage_reports.sh --output ./scripts/ci/combine_coverage_reports.sh
56+
bash ./scripts/ci/combine_coverage_reports.sh ${{ inputs.test_type }}
5557
5658
- name: Upload testing coverage report (.coverage)
5759
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)