Change the value of MaximumDepth of lookaside list to 1024 to improve… #7376
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CheckDotnet | |
on: | |
push: | |
branches: | |
- main | |
- release/* | |
pull_request: | |
branches: | |
- main | |
- release/* | |
permissions: read-all | |
jobs: | |
validate: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
name: Validate | |
runs-on: windows-latest | |
steps: | |
- name: Setup .NET | |
uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 | |
with: | |
dotnet-version: 6.0.x | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Prepare Machine | |
run: scripts/prepare-machine.ps1 | |
shell: pwsh | |
- name: Run DotNet Update | |
run: scripts/generate-dotnet.ps1 | |
shell: pwsh | |
- name: Check for Changes | |
run: | | |
git add . | |
git --no-pager diff --exit-code HEAD |