build(deps): bump MSTest.TestAdapter #94
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unittests and Coverage | |
on: [push, pull_request] | |
jobs: | |
unittest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
dotnet-version: [ "8.0.401" ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
- name: Run Tests | |
working-directory: ./JsonPatchDocumentExtensionDataAdapter | |
run: dotnet test --configuration Release | |
coverage: | |
needs: unittest | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.100 | |
- name: Install dependencies | |
working-directory: ./JsonPatchDocumentExtensionDataAdapter | |
run: dotnet restore | |
- name: Install coverlet.msbuild in ChronoJsonDiffPatchTests | |
working-directory: ./JsonPatchDocumentExtensionDataAdapter/UnitTest | |
run: dotnet add package coverlet.msbuild | |
- name: Measure Test Coverage | |
working-directory: ./JsonPatchDocumentExtensionDataAdapter | |
run: dotnet test /p:Threshold=90 /p:Include=\"[*]ChronoJsonDiffPatch.*\" /p:ThresholdType=line /p:CollectCoverage=true /p:SkipAutoProps=true /p:CoverletOutputFormat=lcov --configuration Release |