Deregister control plane VM from Kubernetes_API_Server LB rule on CloudStackMachine delete #1218
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: Test coverage | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.23 | |
| - name: Run go test with coverage | |
| run: COVER_PROFILE=coverage.txt make test | |
| - name: Codecov upload | |
| uses: codecov/codecov-action@v5.4.0 | |
| with: | |
| files: ./cover.out |