-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (70 loc) · 2.16 KB
/
Copy pathcode-coverage.yml
File metadata and controls
83 lines (70 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Code Coverage
on:
push:
branches: [ "**" ] # Trigger on all branches
pull_request:
branches: [ "main", "release/**" ] # Trigger on PRs to main and release branches
permissions:
contents: read
actions: read
checks: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Full history needed
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.x' # Adjust to your .NET version
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Run TUNIT tests with coverage
run: |
dotnet test --no-build --configuration Release \
-- --report-trx --coverage \
--results-directory ./test-results
continue-on-error: true # Continue even if tests fail
- name: Generate Code Coverage Report
uses: danielpalme/ReportGenerator-GitHub-Action@v5
with:
reports: '**/*.coverage'
targetdir: ./coverage-report
reporttypes: Html;Cobertura;MarkdownSummaryGithub
- name: Upload test results
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results
path: |
**/*.trx
**/*.coverage
- name: Publish test results
uses: dorny/test-reporter@v1
if: always()
with:
name: Test Results
path: '**/*.trx'
reporter: dotnet-trx
- name: Code Coverage Report
uses: irongut/CodeCoverageSummary@v1.3.0
with:
filename: ./coverage-report/Cobertura.xml
badge: true
fail_below_min: false # Set to true if you want to fail on low coverage
format: markdown
hide_branch_rate: false
hide_complexity: false
indicators: true
output: both
thresholds: '60 80' # Warning at 60%, error below 80%
- name: Add Coverage PR Comment
uses: marocchino/sticky-pull-request-comment@v2
if: github.event_name == 'pull_request'
with:
recreate: true
path: code-coverage-results.md