docs(planner): bring doc.go to the data-structure documentation stand… #1090
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: ["*"] | |
| pull_request: | |
| branches: ["*"] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: v2.12.1 | |
| # Temporary override — pre-existing lint debt surfaced by the | |
| # v2.8.0 → v2.12.1 bump. Tracked in #163; remove once paid down. | |
| only-new-issues: true | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - run: make test | |
| test-integration: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: Cache envtest binaries | |
| uses: actions/cache@v4 | |
| with: | |
| path: bin | |
| key: envtest-${{ runner.os }}-k8s-1.34.0-cr-0.23 | |
| - run: make test-integration | |
| verify-generated: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: Install controller-gen | |
| run: go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.20.1 | |
| - run: make verify-generated |