Fix remaining compilation warnings for MCPInvoke 1.4.2 release #14
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: 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 |