Skip to content

Commit 213fa93

Browse files
committed
[Breaking Change] (config) 2 major changes:
1. Rename the workflow about organizing all testing coverage reports in different runtime OS and Python version. 2. Modify the steps.
1 parent 6f8b712 commit 213fa93

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/organize_and_generate_testing_report.yaml renamed to .github/workflows/organize_all_testing_coverage_reports_with_different_os_and_py_version.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#
1212
############################################################################
1313

14-
name: Upload test report to Codecov
14+
name: Organize testing coverage reports as a testing coverage report
1515

1616
on:
1717
workflow_call:
@@ -52,12 +52,12 @@ jobs:
5252
- name: Report testing coverage of project code
5353
run: coverage report -m
5454

55-
- name: Generate testing report for Codacy
56-
run: coverage xml
55+
- name: Rename the testing coverage report with test type
56+
run: mv .coverage .coverage-${{ inputs.test_type }}
5757

5858
- name: Upload testing coverage report
5959
uses: actions/upload-artifact@v3
6060
with:
61-
name: project_coverage_report
62-
path: coverage.xml
61+
name: project_testing_coverage_report
62+
path: .coverage-${{ inputs.test_type }}
6363
if-no-files-found: error

0 commit comments

Comments
 (0)