Skip to content

[MCP Authentication] Add Sub Path Protected Resource Metadata (PRM) Support #39

[MCP Authentication] Add Sub Path Protected Resource Metadata (PRM) Support

[MCP Authentication] Add Sub Path Protected Resource Metadata (PRM) Support #39

Workflow file for this run

name: Build and Test Solution
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Setup .NET SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.x'
- name: Restore dependencies
run: dotnet restore dotnet/Microsoft.McpGateway.sln
- name: Build
run: dotnet build dotnet/Microsoft.McpGateway.sln --configuration Release --no-restore
- name: Test
run: dotnet test dotnet/Microsoft.McpGateway.sln --configuration Release --verbosity normal