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 4f2b73a commit a907284Copy full SHA for a907284
.github/workflows/build-and-test.yml
@@ -16,6 +16,13 @@ jobs:
16
uses: actions/setup-dotnet@v4
17
with:
18
dotnet-version: 8.0.x
19
+ - name: Cache NuGet packages
20
+ uses: actions/cache@v4
21
+ with:
22
+ path: ~/.nuget/packages
23
+ key: nuget-${{ runner.os }}-${{ hashFiles('**/packages.lock.json') }}
24
+ restore-keys: |
25
+ nuget-${{ runner.os }}-
26
- name: Restore dependencies
27
run: dotnet restore ./Light.TemporaryStreams.sln
28
- name: Build
0 commit comments