MCP / SKILL 支持 #382
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: Test | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "**/*.go" | |
| - "go.mod" | |
| - "go.sum" | |
| - "nt_install.sh" | |
| - "scripts/test_nt_install.sh" | |
| - ".github/workflows/*.yml" | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| paths: | |
| - "**/*.go" | |
| - "go.mod" | |
| - "go.sum" | |
| - "nt_install.sh" | |
| - "scripts/test_nt_install.sh" | |
| - ".github/workflows/*.yml" | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [windows-latest, ubuntu-latest, macos-latest] | |
| steps: | |
| - name: Checkout codebase | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| fetch-tags: true | |
| - name: Set up Go (built-in cache) | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.26.x' | |
| check-latest: true | |
| cache: true | |
| - name: Test with unix | |
| if: ${{ matrix.os != 'windows-latest' }} | |
| shell: bash | |
| run: | | |
| sudo go env -w GOTOOLCHAIN=go1.26.0+auto | |
| sudo go test -v -covermode=count -coverprofile='coverage.out' ./... | |
| - name: Smoke test nt_install.sh | |
| if: ${{ matrix.os != 'windows-latest' }} | |
| shell: bash | |
| run: | | |
| bash -n nt_install.sh | |
| sh -n nt_install.sh | |
| bash scripts/test_nt_install.sh | |
| - name: Test with windows | |
| if: ${{ matrix.os == 'windows-latest' }} | |
| run: | | |
| go env -w GOTOOLCHAIN=go1.26.0+auto | |
| go test -v -covermode=count -coverprofile="coverage.out" ./... |