Delete 76 truly unreferenced XML documentation files #73
Workflow file for this run
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: "Copilot Setup Steps" | |
| on: | |
| workflow_dispatch: | |
| push: | |
| paths: | |
| - .github/workflows/copilot-setup-steps.yml | |
| pull_request: | |
| paths: | |
| - .github/workflows/copilot-setup-steps.yml | |
| jobs: | |
| copilot-setup-steps: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '9.0.x' | |
| - name: Run a pre-work build | |
| shell: pwsh | |
| continue-on-error: true | |
| run: .\build.ps1 | |
| - name: Add the local .NET to the envvars (PATH, DOTNET_ROOT) | |
| shell: bash | |
| run: | | |
| echo "$GITHUB_WORKSPACE/.dotnet" >> "$GITHUB_PATH" | |
| echo "DOTNET_ROOT=$GITHUB_WORKSPACE/.dotnet" >> "$GITHUB_ENV" | |
| echo "DOTNET_INSTALL_DIR=$GITHUB_WORKSPACE/.dotnet" >> "$GITHUB_ENV" | |
| echo "DOTNET_SYSTEM_NET_SECURITY_NOREVOCATIONCHECKBYDEFAULT=true" >> "$GITHUB_ENV" | |
| - name: Ensure we are using the correct .NET | |
| shell: pwsh | |
| run: | | |
| dotnet --version | |
| dotnet --info | |
| dotnet workload --info | |
| - name: Reset tracked files to clean workspace | |
| shell: bash | |
| run: | | |
| git reset --hard HEAD |