chore(deps): bump github.com/mattn/go-runewidth in /cli #16
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: CLI | |
| # Builds and tests the cli/ Go module on every push / PR that touches it. | |
| # Foundation PR (PR-1) gates: 3-platform `go build` + `go test ./...` green. | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'cli/**' | |
| - '.github/workflows/cli.yml' | |
| pull_request: | |
| paths: | |
| - 'cli/**' | |
| - '.github/workflows/cli.yml' | |
| defaults: | |
| run: | |
| working-directory: cli | |
| # Windows default is PowerShell, which tokenizes `go test -coverprofile=coverage.out ./...` | |
| # in a way that detaches `.out` as a separate positional package arg. | |
| # Force bash everywhere so the run lines parse identically across platforms | |
| # (Git Bash is preinstalled on windows-latest runners). | |
| shell: bash | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: test (${{ matrix.os }} / go ${{ matrix.go }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| go: ['1.24'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| cache-dependency-path: cli/go.sum | |
| - name: go build | |
| run: go build ./... | |
| - name: go test | |
| run: go test -race -coverprofile=coverage.out ./... | |
| - name: go vet | |
| run: go vet ./... | |
| - name: coverage report | |
| if: matrix.os == 'ubuntu-latest' | |
| run: go tool cover -func=coverage.out |