Skip to content

Commit 5928b42

Browse files
committed
.
1 parent 61ced47 commit 5928b42

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/ci-pipeline-validation.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,17 @@ jobs:
2626
uses: actions/setup-dotnet@v3
2727
with:
2828
dotnet-version: 8.0.x
29-
- name: Restore dependencies
30-
run: dotnet restore ${{ env.solutionPath }}
29+
30+
- 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 }}
3140
- name: Build
3241
run: dotnet build ${{ env.solutionPath }} --configuration Release --no-restore
3342
- name: Execute unit tests

0 commit comments

Comments
 (0)