chore(deps): update node-exporter-kubernetes (patch) #20670
Workflow file for this run
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: Go Unit Tests | |
| on: pull_request | |
| jobs: | |
| go-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| # Compatibility tests in aks-node-controller create git worktrees at | |
| # historical commits. Full history avoids relying on runtime `git fetch` | |
| # of those commits, which is flaky on the default shallow checkout. | |
| fetch-depth: 0 | |
| - uses: actions/setup-go@v7 | |
| with: | |
| go-version: '1.25' | |
| - run: | | |
| set -ex | |
| make test | |
| name: Run unit tests for go code in the repository |