diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 294c81f..dfb1ea3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,14 @@ jobs: - uses: actions/setup-dotnet@v3 with: - dotnet-version: '6.x' + dotnet-version: '6.0.x' + + - uses: actions/cache@v3 + with: + path: ~/.nuget/packages + key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} + restore-keys: | + ${{ runner.os }}-nuget - name: Restore dependencies run: dotnet restore