Bump github.com/modelcontextprotocol/go-sdk from 1.6.1 to 1.7.0 (#2224) #289
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: golangci-lint | |
| # Runs the Go linter on every push and pull request, in addition to the | |
| # existing build/test matrix in go.yml. The goal is to catch common style, | |
| # bug, and performance issues early without forcing developers to install | |
| # golangci-lint locally. | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| # Cancel in-progress runs for the same branch / PR when new commits are | |
| # pushed; this saves CI minutes and keeps the checks queue short. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| golangci: | |
| name: lint (ubuntu-latest, go ${{ matrix.go-version }}) | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| go-version: [1.25] | |
| steps: | |
| - name: Check out source | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 | |
| - name: Set up Go ${{ matrix.go-version }} | |
| uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| cache: true | |
| - name: Run golangci-lint | |
| uses: golangci/golangci-lint-action@v9.3.0 | |
| with: | |
| version: v2.12.2 | |
| args: --timeout=5m ./cmd/mlr ./pkg/... |