Skip to content

Bump ModelContextProtocol from 1.2.0 to 1.3.0 #77

Bump ModelContextProtocol from 1.2.0 to 1.3.0

Bump ModelContextProtocol from 1.2.0 to 1.3.0 #77

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.x
cache: true
cache-dependency-path: Directory.Packages.props
- name: Restore
run: dotnet restore Wick.slnx -maxcpucount:1
- name: Build
run: dotnet build Wick.slnx --configuration Release --no-restore -maxcpucount:1
- name: Test
run: dotnet test Wick.slnx --configuration Release --no-build --no-restore -maxcpucount:1 --logger "trx" --results-directory artifacts/TestResults
- name: Upload test results
if: always()
uses: actions/upload-artifact@v7
with:
name: test-results-${{ matrix.os }}
path: artifacts/TestResults
retention-days: 14