-
-
Notifications
You must be signed in to change notification settings - Fork 1
58 lines (51 loc) · 1.9 KB
/
Copy pathdotnet-develop.yml
File metadata and controls
58 lines (51 loc) · 1.9 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
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET Develop
env:
BUILD_CONFIGURATION: Debug
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
permissions:
contents: read
pages: write
id-token: write
checks: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Restore dependencies
run: dotnet restore src/ServiceMonitor.slnx
- name: Build
run: dotnet build src/ServiceMonitor.slnx --no-restore --configuration ${{ env.BUILD_CONFIGURATION }}
- name: Test
run: dotnet test src/ServiceMonitor.slnx --no-build --verbosity normal --collect:"XPlat Code Coverage" --logger:"junit;LogFilePath=junit.xml" /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura --results-directory ./TestResults --configuration ${{ env.BUILD_CONFIGURATION }}
- name: Run Codacy Analysis CLI
uses: codacy/codacy-analysis-cli-action@master
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
files: "**/junit.xml"
- name: ReportGenerator
uses: danielpalme/ReportGenerator-GitHub-Action@5
with:
reports: ./TestResults/**/coverage.cobertura.xml
targetdir: ./TestResults/CoverageReport
reporttypes: Html;MarkdownSummaryGithub
- name: Write Coverage to Job Summary
run: cat ./TestResults/CoverageReport/SummaryGithub.md >> $GITHUB_STEP_SUMMARY
- name: Upload Coverage Report
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: ./TestResults/CoverageReport