-
Notifications
You must be signed in to change notification settings - Fork 12
55 lines (51 loc) · 1.56 KB
/
code-coverage.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
name: code-coverage
on:
push:
branches:
- releases/**
- hotfix/**
- develop
- main
- features/**
paths:
- src/**
- tests/**
- .github/workflows/code-coverage.yml
pull_request:
branches:
- develop
- main
paths:
- src/**
- tests/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Setup .NET 7.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Setup .NET 8.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Install dependencies
run: dotnet restore ./src/AzureMapsControl.Components/AzureMapsControl.Components.csproj
- name: Build
run: dotnet build --configuration Release --no-restore ./src/AzureMapsControl.Components/AzureMapsControl.Components.csproj
- name: Test
run: dotnet test --configuration Release ./tests/AzureMapsControl.Components.Tests/AzureMapsControl.Components.Tests.csproj --collect:"XPlat Code Coverage" --results-directory ./tests/AzureMapsControl.Components.Tests/testresults
- name: Upload code coverage
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./tests/AzureMapsControl.Components.Tests/testresults
flags: unittests # optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)