File tree Expand file tree Collapse file tree 2 files changed +34
-44
lines changed
Expand file tree Collapse file tree 2 files changed +34
-44
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Build MonkeyMCP Projects
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request :
7+ branches : [ main ]
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Checkout repository
14+ uses : actions/checkout@v4
15+
16+ - name : Setup .NET
17+ uses : actions/setup-dotnet@v4
18+ with :
19+ dotnet-version : ' 9.0.x'
20+
21+ - name : Restore dependencies
22+ run : dotnet restore
23+
24+ - name : Build MonkeyMCP (Console/Docker)
25+ run : dotnet build MonkeyMCP/MonkeyMCP.csproj --no-restore
26+
27+ - name : Build MonkeyMCPSSE (Local HTTP)
28+ run : dotnet build MonkeyMCPSSE/MonkeyMCPSSE.csproj --no-restore
29+
30+ - name : Build MonkeyMCPSSERemote (Azure Functions)
31+ run : dotnet build MonkeyMCPSSERemote/MonkeyMCPSSERemote.csproj --no-restore
32+
33+ - name : Test projects (if tests exist)
34+ run : dotnet test --no-build --verbosity normal
You can’t perform that action at this time.
0 commit comments