Skip to content

Output filename customization #216

Output filename customization

Output filename customization #216

Workflow file for this run

name: Codecov
on:
workflow_dispatch:
push:
paths-ignore:
- '**/*'
- '!.github/workflows/codecov.yml'
- '!src/**/*.csproj'
- '!src/**/*.cs'
branches:
- '*'
pull_request:
paths-ignore:
- '**/*'
- '!.github/workflows/codecov.yml'
- '!src/**/*.csproj'
- '!src/**/*.cs'
branches:
- '*'
env:
VERSION: 0.8.2.${{ github.run_number }}
jobs:
build:
name: 👌 Verify build
runs-on: windows-latest
steps:
- name: 🛒 Checkout repository
uses: actions/checkout@v3
- 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@v3
with:
directory: src
file: coverage.xml
flags: unittests
fail_ci_if_error: false
verbose: true