Bump submodules/googletest from 279f847 to b2b9072 (#5529)
#9668
This file contains hidden or 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@d4c94342e560b34958eacfc5d055d21461ed1c5d | |
| with: | |
| dotnet-version: 6.0.x | |
| - name: Checkout repository | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 | |
| - 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 |