Skip to content

Commit

Permalink
try to cache .net stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
siblount authored Feb 11, 2024
1 parent ef9dad2 commit ab7dc07
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/dotnet-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,12 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Cache NuGet packages
uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
restore-keys: |
${{ runner.os }}-nuget
- name: Test
run: dotnet test src/ --verbosity normal

0 comments on commit ab7dc07

Please sign in to comment.