We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 480017f commit 14a993aCopy full SHA for 14a993a
.github/workflows/publish.yml
@@ -75,10 +75,7 @@ jobs:
75
- name: Setup .Net
76
uses: actions/setup-dotnet@v4
77
with:
78
- dotnet-version: |
79
- ${{ env.DOTNET8_VERSION }}
80
- ${{ env.DOTNET9_VERSION }}
81
- ${{ env.DOTNET_VERSION }}
+ dotnet-version: ${{ env.DOTNET_VERSION }}
82
83
- name: Install coverage tools
84
run: |
@@ -89,6 +86,7 @@ jobs:
89
86
run: dotnet build --configuration Release -p:DisableProxyGenerator=true -p:DisableDockerBuild=true
90
87
91
88
- name: Run tests with coverage
+ continue-on-error: true
92
run: dotnet test --no-build --configuration Release --settings specs.runsettings --collect:"XPlat Code Coverage" --results-directory ./coverage-results
93
94
- name: Generate coverage reports
0 commit comments