Skip to content

Commit

Permalink
speicfy test sets explicityl
Browse files Browse the repository at this point in the history
  • Loading branch information
bassmang committed Feb 6, 2025
1 parent 9c2e5f7 commit 7153437
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ jobs:
dotnet build --no-restore --configuration Release -bl /p:SignAssembly=true
- name: Non-GRPC Tests (macos)
if: matrix.os == 'macos-latest'
run: dotnet test --no-build -bl --configuration Release --filter "Category!=GRPC"
run: dotnet test --no-build -bl --configuration Release --filter "Category=UnitV1|Category=UnitV2"
- name: Install Dev Certs for GRPC
if: matrix.os == 'ubuntu-latest'
run: dotnet dev-certs https --trust
- name: All Unit Tests With Coverage (ubuntu)
if: matrix.os == 'ubuntu-latest'
run: dotnet test --no-build -bl --configuration Release --collect:"XPlat Code Coverage"
run: dotnet test --no-build -bl --configuration Release --filter "Category=UnitV1|Category=UnitV2|Category=GRPC" --collect:"XPlat Code Coverage"
- name: Generate & Merge Coverage Report
if: matrix.os == 'ubuntu-latest'
run: |
Expand Down

0 comments on commit 7153437

Please sign in to comment.