Skip to content

Fix remaining compilation warnings for MCPInvoke 1.4.2 release #14

Fix remaining compilation warnings for MCPInvoke 1.4.2 release

Fix remaining compilation warnings for MCPInvoke 1.4.2 release #14

Workflow file for this run

name: MCPInvoke CI Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup .NET SDKs
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
9.0.x
- name: Restore dependencies
run: dotnet restore MCPInvoke.sln
- name: Build solution
run: dotnet build MCPInvoke.sln --no-restore --configuration Release
- name: Test
run: dotnet test MCPInvoke.Tests/MCPInvoke.Tests.csproj --no-build --configuration Release --verbosity normal