Update refit monorepo to 7.2.1 #721
Workflow file for this run
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
name: Codecov | |
on: | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- '**/*' | |
- '!.github/workflows/codecov.yml' | |
- '!src/**/*.csproj' | |
- '!src/**/*.cs' | |
branches: | |
- 'main' | |
pull_request: | |
paths-ignore: | |
- '**/*' | |
- '!.github/workflows/codecov.yml' | |
- '!src/**/*.csproj' | |
- '!src/**/*.cs' | |
branches: | |
- '*' | |
env: | |
VERSION: 1.3.0.${{ github.run_number }} | |
CODECOV_TOKEN: cbd141f8-4d0d-4bc1-84a7-970f9f9b87ac | |
jobs: | |
build: | |
name: 👌 Verify build | |
runs-on: windows-latest | |
steps: | |
- name: 🛒 Checkout repository | |
uses: actions/checkout@v4 | |
- name: 🧪 Test | |
run: dotnet test src/Refitter.Tests/Refitter.Tests.csproj -c Release --collect "Code coverage" -p:UseSourceLink=true -p:PackageVersion="${{ env.VERSION }}" | |
- name: 🗳️ Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Packages | |
path: | | |
**/*.nupkg | |
README.md | |
- name: Convert Code Coverage | |
working-directory: src | |
continue-on-error: true | |
shell: pwsh | |
run: | | |
dotnet tool update dotnet-coverageconverter --global | |
dotnet-coverageconverter --CoverageFilesFolder . --ProcessAllFiles | |
Get-ChildItem '*.coveragexml' -Recurse | Select-Object -First 1 | Copy-Item -Path { $_.FullName } -Destination ./coverage.xml | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
directory: src | |
file: coverage.xml | |
flags: unittests | |
fail_ci_if_error: true | |
verbose: true |