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 61ced47 commit 5928b42Copy full SHA for 5928b42
.github/workflows/ci-pipeline-validation.yml
@@ -26,8 +26,17 @@ jobs:
26
uses: actions/setup-dotnet@v3
27
with:
28
dotnet-version: 8.0.x
29
- - name: Restore dependencies
30
- run: dotnet restore ${{ env.solutionPath }}
+
+ - name: Setup NuGet
31
+ uses: nuget/setup-nuget@v1
32
+ with:
33
+ nuget-version: 'latest' # Or a specific version like '5.11.1'
34
35
+ - name: Restore NuGet packages
36
+ run: nuget restore ${{ env.solutionPath }} # Replace with your solution file or project directory
37
38
+ # - name: Restore dependencies
39
+ # run: dotnet restore ${{ env.solutionPath }}
40
- name: Build
41
run: dotnet build ${{ env.solutionPath }} --configuration Release --no-restore
42
- name: Execute unit tests
0 commit comments