Skip to content

Commit

Permalink
Update main-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
benpollarduk authored Dec 21, 2023
1 parent a88547c commit 016c906
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,15 @@ jobs:

- name: Check if coverage file exists
run: |
if Test-Path .\coverage.opencover.xml; then
if (Test-Path .\coverage.opencover.xml) {
Write-Host "Coverage file exists."
else
} else {
Write-Host "Coverage file does not exist."
fi
}
shell: pwsh

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 016c906

Please sign in to comment.