docs: update CLAUDE.md for test_progress MCP tool (42→43 tools) #85
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: CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.24.x' | |
| cache: true | |
| - name: Install dependencies | |
| run: go mod download | |
| - name: Vet | |
| run: go vet ./... | |
| - name: Unit tests | |
| run: go test ./... -v -count=1 | |
| - name: Build (Unix) | |
| if: runner.os != 'Windows' | |
| run: go build -o codes ./cmd/codes | |
| - name: Build (Windows) | |
| if: runner.os == 'Windows' | |
| run: go build -o codes.exe ./cmd/codes | |
| - name: Smoke test (Unix) | |
| if: runner.os != 'Windows' | |
| run: | | |
| ./codes version | |
| ./codes --help | |
| ./codes profile add --help | |
| ./codes config list terminal | |
| - name: Smoke test (Windows) | |
| if: runner.os == 'Windows' | |
| run: | | |
| .\codes.exe version | |
| .\codes.exe --help | |
| .\codes.exe profile add --help | |
| .\codes.exe config list terminal |