Skip to content

Commit 3bb2ef7

Browse files
committed
Update
1 parent ef3873a commit 3bb2ef7

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

.github/workflows/coverage.yml

+20-19
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
1-
name: Publish Code Coverage
2-
3-
on:
1+
name: Upload Code Coverage
2+
3+
on:
44
workflow_dispatch:
5-
6-
jobs:
7-
build:
8-
runs-on: ubuntu-latest
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
910
steps:
1011
- uses: actions/checkout@v2
1112
with:
1213
submodules: true
1314
fetch-depth: 1
1415

15-
- name: Test
16-
run: dotnet test --collect:"XPlat Code Coverage" --results-directory coverage
16+
- name: Test
17+
run: dotnet test --collect:"XPlat Code Coverage" --results-directory coverage
1718

18-
- name: Code Coverage Summary Report
19-
uses: irongut/CodeCoverageSummary@v1.3.0
20-
with:
21-
filename: 'coverage/*/coverage.cobertura.xml'
22-
badge: true
23-
format: 'markdown'
24-
output: 'both'
25-
26-
- name: Write to Job Summary
27-
run: cat code-coverage-results.md >> $GITHUB_STEP_SUMMARY
19+
- name: Code Coverage Summary Report
20+
uses: irongut/CodeCoverageSummary@v1.3.0
21+
with:
22+
filename: 'coverage/*/coverage.cobertura.xml'
23+
badge: true
24+
format: 'markdown'
25+
output: 'both'
26+
27+
- name: Write to Job Summary
28+
run: cat code-coverage-results.md >> $GITHUB_STEP_SUMMARY

0 commit comments

Comments
 (0)