-
-
Notifications
You must be signed in to change notification settings - Fork 42
62 lines (53 loc) · 1.52 KB
/
codecov.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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