From a97f7acd59f9b9c12e80ebb209488100db86c3c3 Mon Sep 17 00:00:00 2001 From: Eirik Tsarpalis Date: Tue, 17 Dec 2024 20:16:20 +0200 Subject: [PATCH] Enable CodeCov upload --- .github/workflows/build.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0cc71fd..171ffbf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,18 +23,6 @@ jobs: dotnet-version: 9.0.x - name: Build & Test run: make - - name: Code Coverage Report - uses: irongut/CodeCoverageSummary@v1.3.0 - with: - filename: artifacts/**/*.cobertura.xml - badge: true - fail_below_min: true - format: markdown - hide_branch_rate: false - hide_complexity: true - indicators: true - output: both - thresholds: '60 80' Windows: runs-on: windows-latest @@ -49,6 +37,10 @@ jobs: dotnet-version: 9.0.x - name: Build & Test run: make + - name: Upload to Codecov + uses: codecov/codecov-action@v5 + with: + token: ${{ secrets.CODECOV_TOKEN }} MacOS: runs-on: macos-latest