| 1 | name CI |
| 2 | |
| 3 | on |
| 4 | push: |
| 5 | branches: [main] |
| 6 | pull_request: |
| 7 | branches: [main] |
| 8 | |
| 9 | permissions |
| 10 | contents: read |
| 11 | |
| 12 | jobs |
| 13 | build: |
| 14 | runs-on: ubuntu-latest |
| 15 | steps: |
| 16 | - uses: actions/checkout@v4 |
| 17 | |
| 18 | - uses: actions/setup-dotnet@v4 |
| 19 | with: |
| 20 | dotnet-version: '10.0.x' |
| 21 | |
| 22 | - name: Build and test |
| 23 | run: dotnet test McpToolManifest.Tests/McpToolManifest.Tests.csproj -c Release |
| 24 |