-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (31 loc) · 968 Bytes
/
test.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
name: "Run tests"
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
name: Run tests (${{ matrix.dotnet-version }})
env:
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
strategy:
matrix:
dotnet-version: ["6.0.x", "8.0.x"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: "${{ matrix.dotnet-version }}"
- run: dotnet restore
- name: Run tests with coverage
run: dotnet test --no-restore --collect:"XPlat Code Coverage" /p:CoverletOutputFormat=opencover --logger trx --results-directory "test-results"
- name: Publish test results (${{ matrix.dotnet-version }})
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
comment_mode: off
files: |
test-results/**/*.trx
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3