Bump SharpFuzz from 2.1.1 to 2.2.0 (#72) #144
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) Team CharLS. | |
# SPDX-License-Identifier: BSD-3-Clause | |
name: Coverage Report | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore -c Release | |
# Add coverlet.collector nuget package to test project - 'dotnet add <TestProject.cspoj> package coverlet | |
- name: Test | |
run: dotnet test --no-build -c Release --verbosity normal --collect:"XPlat Code Coverage;Format=lcov,cobertura" --logger trx --results-directory coverage --settings .github/workflows/coverlet.runsettings | |
- name: Code Coverage Summary Report | |
uses: irongut/[email protected] | |
with: | |
filename: 'coverage/*/coverage.cobertura.xml' | |
badge: true | |
format: 'markdown' | |
output: 'both' | |
- 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 | |
- name: Write to Job Summary | |
run: cat code-coverage-results.md >> $GITHUB_STEP_SUMMARY | |
- name: Coveralls | |
uses: coverallsapp/github-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
file: ${{ github.workspace }}/coverage/*/coverage.info | |
build-reportgenerator: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build --no-restore -c Release | |
# Add coverlet.collector nuget package to test project - 'dotnet add <TestProject.cspoj> package coverlet | |
- name: Test | |
run: dotnet test --no-build -c Release --verbosity normal --collect:"XPlat Code Coverage" --logger trx --results-directory coverage --settings .github/workflows/coverlet.runsettings | |
- name: Create code coverage report | |
run: | | |
dotnet tool install -g dotnet-reportgenerator-globaltool | |
reportgenerator -reports:coverage/*/coverage.cobertura.xml -targetdir:CodeCoverage -reporttypes:'MarkdownSummaryGithub;Cobertura' | |
- name: Write to Job Summary | |
run: cat CodeCoverage/SummaryGithub.md >> $GITHUB_STEP_SUMMARY |