Skip to content

Commit b5a19ca

Browse files
Merge pull request #9 from jamesmontemagno/remove-mcp
refactor: Update build workflow for MonkeyMCP projects
2 parents 0dd57fe + b038c7b commit b5a19ca

File tree

2 files changed

+34
-44
lines changed

2 files changed

+34
-44
lines changed

.github/workflows/build-and-publish-monkeymcp.yml

Lines changed: 0 additions & 44 deletions
This file was deleted.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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

0 commit comments

Comments
 (0)