-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (32 loc) · 1.14 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
name: Upload test coverage report to codecov
on:
push:
branches: [ "master" ]
jobs:
codecov:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
working-directory: ./tests/ImageHosting.Storage.UnitTests
run: dotnet restore
- name: Build
working-directory: ./tests/ImageHosting.Storage.UnitTests
run: dotnet build --no-restore /p:ContinuousIntegrationBuild=true
- name: Test
working-directory: ./tests/ImageHosting.Storage.UnitTests
run: dotnet test --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
directory: ./tests/ImageHosting.Storage.UnitTests
file: coverage.opencover.xml
flags: unittests
token: ${{ secrets.CODECOV_TOKEN }}
slug: ${{ github.repository }}