Skip to content

Commit

Permalink
Fix output
Browse files Browse the repository at this point in the history
  • Loading branch information
yoanm committed Mar 20, 2024
1 parent a7605bb commit c201afc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/reports-group/codacy-uploader/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,5 @@ runs:
const {REPORTS, METADATA} = process.env;
const metadata = JSON.parse(METADATA);
core.setOutput('group', metadata.path.split(',').join('\n')); // Trusted path as it comes from trusted metadata (=from `reports-group/load-metadata`)
core.setOutput('groups', metadata.path.split(',').join('\n')); // Trusted path as it comes from trusted metadata (=from `reports-group/load-metadata`)
core.setOutput('reports', REPORTS.split(',').join('\n')); // Trusted path, see `build-uploader-options` step
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
id: unit-tests-coverage-group
uses: ./.github/actions/reports-group/create
with:
name: unit-tests-php${{ matrix.php-version }}
name: unit-tests
format: clover
files: build/coverage-phpunit/unit.clover
flags: |
Expand All @@ -97,7 +97,7 @@ jobs:
id: functional-tests-coverage-group
uses: ./.github/actions/reports-group/create
with:
name: functional-tests-php${{ matrix.php-version }}
name: functional-tests
format: clover
files: |
build/coverage-phpunit/functional.clover
Expand Down

0 comments on commit c201afc

Please sign in to comment.