Skip to content

Commit 94718b4

Browse files
committed
Merge branch 'release/2026.1.0' into develop
2 parents ab9a279 + ba02c16 commit 94718b4

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,13 @@ jobs:
3939
- name: Build
4040
run: dotnet build --configuration Release --no-restore
4141

42-
- name: Run tests
42+
- name: Run tests (coverage)
43+
if: matrix.os == 'ubuntu-latest' && matrix.dotnet-version == '10.0.x'
4344
run: dotnet test --configuration Release --no-build --verbosity normal --collect:"XPlat Code Coverage" --results-directory ./coverage
45+
46+
- name: Run tests
47+
if: !(matrix.os == 'ubuntu-latest' && matrix.dotnet-version == '10.0.x')
48+
run: dotnet test --configuration Release --no-build --verbosity normal
4449

4550
- name: Upload coverage to Codecov
4651
if: matrix.os == 'ubuntu-latest' && matrix.dotnet-version == '10.0.x'

0 commit comments

Comments
 (0)