diff --git a/.github/workflows/code-coverage.yml b/.github/workflows/code-coverage.yml new file mode 100644 index 0000000..579fe87 --- /dev/null +++ b/.github/workflows/code-coverage.yml @@ -0,0 +1,49 @@ +name: Code Coverage Report + +on: + push: + branches: [ * ] + pull_request: + branches: [ * ] + +jobs: + build: + runs-on: ubuntu-latest + name: CI Build + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 8.0.x + + - name: Restore Dependencies + run: dotnet restore serilog-sinks-splunk.sln + + - name: Build + run: dotnet build serilog-sinks-splunk.sln --configuration Release --no-restore + + - name: Test + run: dotnet test serilog-sinks-splunk.sln --configuration Release --no-build --verbosity normal --collect:"XPlat Code Coverage" --results-directory ./coverage + + - name: Code Coverage Report + uses: irongut/CodeCoverageSummary@v1.3.0 + with: + filename: coverage/**/coverage.cobertura.xml + badge: true + fail_below_min: false + format: markdown + hide_branch_rate: false + hide_complexity: true + indicators: true + output: both + thresholds: '60 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