Skip to content

build(deps): bump gitleaks/gitleaks-action from 2 to 3 #75

build(deps): bump gitleaks/gitleaks-action from 2 to 3

build(deps): bump gitleaks/gitleaks-action from 2 to 3 #75

Workflow file for this run

# 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