We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a42d6c9 commit 601eb68Copy full SHA for 601eb68
.github/workflows/pr-checks.yml
@@ -81,12 +81,12 @@ jobs:
81
82
# Execute all unit tests in the solution
83
- name: Execute unit tests with .NET Framework
84
- if: ${{ matrix.dotnet-version == '4.8' }}
+ if: ${{ (matrix.dotnet-version == '4.8') && (matrix.configuration == 'Debug') }}
85
working-directory: src
86
run: dotnet test $env:Solution_Name -f net48 -p:ParallelizeTestCollections=false
87
88
89
- name: Execute unit tests with .NET
90
- if: ${{ matrix.dotnet-version == '6.0.x' }}
+ if: ${{ (matrix.dotnet-version == '6.0.x') && (matrix.configuration == 'Debug') }}
91
92
run: dotnet test $env:Solution_Name -f net6.0 -p:ParallelizeTestCollections=false
0 commit comments