Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,16 @@ jobs:
run: dotnet build build.slnf --configuration Release --framework ${{ matrix.framework }} --no-restore

- name: Test
# coverlet.MTP is a Microsoft.Testing.Platform extension, so its
# arguments must be forwarded to the test application after `--`.
# Coverage reports are written into --results-directory.
run: |
dotnet test \
--no-build \
--configuration Release \
--framework ${{ matrix.framework }} \
--results-directory TestResults/${{ matrix.framework }} \
-- \
--coverlet \
--coverlet-output-format cobertura

Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/schema-compat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,16 @@ jobs:
run: dotnet build build.slnf --configuration Release --framework net10.0 --no-restore

- name: Test
# coverlet.MTP is a Microsoft.Testing.Platform extension, so its
# arguments must be forwarded to the test application after `--`.
# Coverage reports are written into --results-directory.
run: |
dotnet test \
--no-build \
--configuration Release \
--framework net10.0 \
--results-directory TestResults/net10.0 \
-- \
--coverlet \
--coverlet-output-format cobertura

Expand Down
Loading