Skip to content

Commit 14a993a

Browse files
committed
Limiting to .net 10 for coverage and continue on error
1 parent 480017f commit 14a993a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,7 @@ jobs:
7575
- name: Setup .Net
7676
uses: actions/setup-dotnet@v4
7777
with:
78-
dotnet-version: |
79-
${{ env.DOTNET8_VERSION }}
80-
${{ env.DOTNET9_VERSION }}
81-
${{ env.DOTNET_VERSION }}
78+
dotnet-version: ${{ env.DOTNET_VERSION }}
8279

8380
- name: Install coverage tools
8481
run: |
@@ -89,6 +86,7 @@ jobs:
8986
run: dotnet build --configuration Release -p:DisableProxyGenerator=true -p:DisableDockerBuild=true
9087

9188
- name: Run tests with coverage
89+
continue-on-error: true
9290
run: dotnet test --no-build --configuration Release --settings specs.runsettings --collect:"XPlat Code Coverage" --results-directory ./coverage-results
9391

9492
- name: Generate coverage reports

0 commit comments

Comments
 (0)