build(deps): bump gitleaks/gitleaks-action from 2 to 3 #75
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
| # Builds the solution and runs the test suite on every pull request and on | |
| # pushes to master. Tests need neither Docker nor a live collector, so this is | |
| # a plain restore/build/test with no services. | |
| name: ci | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| # Everything targets net10.0; the Aspire AppHost SDK and packages ship as | |
| # plain NuGet references, so a single 10.0 SDK builds the whole solution. | |
| - name: Set up .NET | |
| uses: actions/setup-dotnet@v6 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: Restore | |
| run: dotnet restore CopilotScope.sln | |
| - name: Build | |
| run: dotnet build CopilotScope.sln --configuration Release --no-restore | |
| - name: Test | |
| run: dotnet test CopilotScope.sln --configuration Release --no-build --verbosity normal |