[MCP Authentication] Add Sub Path Protected Resource Metadata (PRM) Support #39
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: 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 |