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.
2 parents 3fba6f8 + 976bdd5 commit db8db07Copy full SHA for db8db07
.github/workflows/build-and-test.yml
@@ -56,6 +56,14 @@ jobs:
56
git fetch --prune --unshallow
57
git submodule -q update --init --recursive
58
59
+ - name: Setup nuget cache
60
+ uses: actions/cache@v2
61
+ id: nuget-cache
62
+ with:
63
+ path: ~/.nuget
64
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/*.props', '**/*.targets') }}
65
+ restore-keys: ${{ runner.os }}-nuget-
66
+
67
- name: Build
68
shell: pwsh
69
run: ./ci-build.ps1 "${{matrix.options.framework}}"
0 commit comments