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 d5b4c94 commit 776a8c0Copy full SHA for 776a8c0
.github/workflows/main.yml
@@ -75,7 +75,9 @@ jobs:
75
76
- name: Running unit tests (windows only)
77
if: matrix.os == 'windows-latest'
78
- run: dotnet test -c Debug --framework ${{ matrix.framework }}
+ run: |
79
+ dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org --configfile $env:APPDATA\NuGet\NuGet.Config
80
+ dotnet test -c Debug --framework ${{ matrix.framework }}
81
82
- name: Upload coverage to Codecov
83
if: matrix.os == 'ubuntu-latest'
0 commit comments