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 d5cef7e commit dbe30f7Copy full SHA for dbe30f7
.github/workflows/ci.yml
@@ -10,7 +10,7 @@ on:
10
jobs:
11
lint:
12
name: Lint
13
- runs-on: ubuntu-latest
+ runs-on: windows-latest
14
steps:
15
- name: Checkout repository
16
uses: actions/checkout@v4
@@ -20,6 +20,15 @@ jobs:
20
dotnet-version: '6.0'
21
- name: Install dependencies
22
run: dotnet restore
23
+ - name: Cache NuGet packages
24
+ uses: actions/cache@v4
25
+ with:
26
+ path: |
27
+ ~/.nuget/packages
28
+ ~/.local/share/NuGet/Cache
29
+ key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
30
+ restore-keys: |
31
+ ${{ runner.os }}-nuget-
32
- name: Run linting
33
run: dotnet build --no-restore --configuration Release /warnaserror
34
env:
0 commit comments