9 Commits

Author SHA1 Message Date
cf5e17f430 test1
Some checks failed
check main state / build (10.0.x) (push) Has been cancelled
Main Build Process / Build & Test (pull_request) Failing after 1m33s
2026-02-05 23:48:17 +01:00
44a4ed95f5 test1
Some checks failed
check main state / build (10.0.x) (push) Has been cancelled
Main Build Process / Build & Test (pull_request) Failing after 1m31s
2026-02-05 23:41:45 +01:00
7e52bd0e33 test1
Some checks failed
check main state / build (10.0.x) (push) Has been cancelled
Main Build Process / Build & Test (pull_request) Failing after 1m31s
2026-02-05 23:37:33 +01:00
516bd3cf87 test1
Some checks failed
check main state / build (10.0.x) (push) Has been cancelled
Main Build Process / Build & Test (pull_request) Failing after 1m32s
2026-02-05 23:33:40 +01:00
6377884651 test1
Some checks failed
check main state / build (10.0.x) (push) Has been cancelled
Main Build Process / Build & Test (pull_request) Failing after 1m33s
2026-02-05 23:25:35 +01:00
05804114b4 test1
Some checks failed
check main state / build (10.0.x) (push) Successful in 2m10s
Main Build Process / Build & Test (pull_request) Failing after 1m42s
2026-02-05 23:14:46 +01:00
ea7a32d0c9 test1
Some checks failed
check main state / build (10.0.x) (push) Successful in 2m7s
Main Build Process / Build & Test (pull_request) Failing after 2m17s
2026-02-05 22:56:57 +01:00
9b1d573231 test1
Some checks failed
check main state / build (10.0.x) (push) Successful in 1m44s
Main Build Process / Build & Test (pull_request) Failing after 1m34s
2026-02-05 22:22:40 +01:00
33155d788d test1
Some checks failed
check main state / build (10.0.x) (push) Successful in 1m35s
Main Build Process / Build & Test (pull_request) Failing after 1m28s
2026-02-05 22:11:42 +01:00
2 changed files with 21 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Setup dotnet
uses: actions/setup-dotnet@v5
uses: actions/setup-dotnet@v3
with:
dotnet-version: '10.0.x'
- name: Install dependencies

View File

@@ -28,7 +28,7 @@ jobs:
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v5
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
10.x
@@ -39,13 +39,30 @@ jobs:
uses: danielpalme/ReportGenerator-GitHub-Action@v5.5.1
with:
reports: "**/*.cobertura.xml" # REQUIRED # The coverage reports that should be parsed (separated by semicolon). Globbing is supported.
targetdir: "${{ github.workspace }}" # REQUIRED # The directory where the generated report should be saved.
reporttypes: "Cobertura" # The output formats and scope (separated by semicolon) Values: Badges, Clover, Cobertura, CsvSummary, Html, Html_Dark, Html_Light, Html_BlueRed, HtmlChart, HtmlInline, HtmlInline_AzurePipelines, HtmlInline_AzurePipelines_Dark, HtmlInline_AzurePipelines_Light, HtmlSummary, JsonSummary, Latex, LatexSummary, lcov, MarkdownSummary, MarkdownSummaryGithub, MarkdownDeltaSummary, MHtml, PngChart, SonarQube, TeamCitySummary, TextSummary, TextDeltaSummary, Xml, XmlSummary
targetdir: "coverage-report" # REQUIRED # The directory where the generated report should be saved.
reporttypes: "Html;MarkdownSummary;Cobertura" # The output formats and scope (separated by semicolon) Values: Badges, Clover, Cobertura, CsvSummary, Html, Html_Dark, Html_Light, Html_BlueRed, HtmlChart, HtmlInline, HtmlInline_AzurePipelines, HtmlInline_AzurePipelines_Dark, HtmlInline_AzurePipelines_Light, HtmlSummary, JsonSummary, Latex, LatexSummary, lcov, MarkdownSummary, MarkdownSummaryGithub, MarkdownDeltaSummary, MHtml, PngChart, SonarQube, TeamCitySummary, TextSummary, TextDeltaSummary, Xml, XmlSummary
verbosity: "Info" # The verbosity level of the log messages. Values: Verbose, Info, Warning, Error, Off
title: "Code Coverage" # Optional title.
tag: "${{ github.run_number }}_${{ github.run_id }}" # Optional tag or build version.
customSettings: "" # Optional custom settings (separated by semicolon). See: https://github.com/danielpalme/ReportGenerator/wiki/Settings.
toolpath: "reportgeneratortool" # Default directory for installing the dotnet tool.
- name: Upload coverage report (debug)
uses: actions/upload-artifact@v3
with:
name: coverage-report
path: coverage-report/
if-no-files-found: error
- name: Publish coverage to pages
run: ls coverage-report
- name: Upload coverage via SSH
uses: appleboy/scp-action@v1
with:
host: "192.168.1.103"
username: "gitea"
password: "password"
port: 2222
source: "coverage-report/*"
target: "/config/test"
- name: Upload Combined Coverage XML
uses: actions/upload-artifact@v3
with: