Skip to content

Commit 7d916d7

Browse files
committed
Fix coverage combine step
1 parent 77a2fc4 commit 7d916d7

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

action.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,9 @@ runs:
2222
pip install coverage
2323
working-directory: ${{ runner.temp }}/coverage
2424
shell: bash
25-
- name: Collect names
26-
id: meta
27-
run: |
28-
FILES=$(ls -A --dired | tr '\n' ' ')
29-
FILES2="${FILES% }"
30-
echo "::set-output name=files::${FILES2// /,}"
31-
working-directory: ${{ runner.temp }}/coverage
32-
shell: bash
3325
- name: Combine coverage reports
3426
run: |
35-
coverage combine ${{ steps.meta.outputs.files }}
27+
coverage combine *
3628
working-directory: ${{ runner.temp }}/coverage
3729
shell: bash
3830
- name: Generate XML coverage report

0 commit comments

Comments
 (0)