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 81fe959 commit 2a3ed7fCopy full SHA for 2a3ed7f
.github/workflows/test-all.yml
@@ -15,8 +15,19 @@ jobs:
15
with:
16
dotnet-version: '9.0.x'
17
18
+ - name: Cache NuGet packages
19
+ uses: actions/cache@v4
20
+ with:
21
+ path: ${{ github.workspace }}/.nuget/packages
22
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}-${{ hashFiles('**/global.json') }}
23
+ restore-keys: |
24
+ ${{ runner.os }}-nuget-
25
+
26
+ - name: dotnet restore
27
+ run: dotnet restore
28
29
- name: dotnet build
- run: dotnet build
30
+ run: dotnet build --no-restore
31
32
- name: dotnet test
- run: dotnet test
33
+ run: dotnet test --no-build --verbosity normal
0 commit comments