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 1d0aab2 commit d14aca8Copy full SHA for d14aca8
.github/workflows/build-samples-and-snippets.yml
@@ -19,6 +19,13 @@ jobs:
19
dotnet-version: 8.0.x
20
- name: Add MSBuild to PATH
21
uses: microsoft/setup-msbuild@v2
22
+ - name: NuGet Cache
23
+ uses: actions/cache@v4
24
+ with:
25
+ path: ~/.nuget/packages
26
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
27
+ restore-keys: |
28
+ ${{ runner.os }}-nuget-
29
- name: Build affected samples and snippets
30
run: pwsh.exe -NoLogo -NonInteractive -File .\tools\build-samples-and-snippets.ps1
31
- name: Notify Slack on failure
0 commit comments